/**
 * VV Child Theme — About Us Page Styles
 *
 * Sections: Hero, Story, Stats, Values, Owner, Marquee, CTA
 * Uses Manrope font (already enqueued globally).
 *
 * Animations: scroll-reveal via .vv-reveal classes + IntersectionObserver
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
	--about-black:    #0a0a0a;
	--about-dark:     #111111;
	--about-charcoal: #1c1c1e;
	--about-red:      #e8001c;
	--about-red-dark: #c0001a;
	/* --about-gold removed — using --about-red for all accents */
	--about-white:    #ffffff;
	--about-offwhite: #f8f7f4;
	--about-grey-lt:  #f0eeeb;
	--about-grey-md:  #8e8e93;
	--about-grey-dk:  #3a3a3c;
	--about-radius:   24px;
	--about-radius-sm: 12px;
	--about-transition: 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BODY OVERRIDES
   ============================================================ */

body.page-template-page-about {
	overflow-x: hidden;
	background: var(--about-black);
}

/* Hide Salient's header spacer — hero handles its own top spacing */
body.page-template-page-about #header-space {
	display: none !important;
}

/* ============================================================
   SCROLL-REVEAL SYSTEM
   ============================================================ */

.vv-reveal {
	opacity: 0;
	transform: translateY(48px);
	transition: opacity var(--about-transition), transform var(--about-transition);
}
.vv-reveal.from-left {
	transform: translateX(-60px);
}
.vv-reveal.from-right {
	transform: translateX(60px);
}
.vv-reveal.from-scale {
	transform: scale(0.92);
}
.vv-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.vv-reveal-d1 { transition-delay: 0.1s; }
.vv-reveal-d2 { transition-delay: 0.2s; }
.vv-reveal-d3 { transition-delay: 0.3s; }
.vv-reveal-d4 { transition-delay: 0.4s; }
.vv-reveal-d5 { transition-delay: 0.5s; }
.vv-reveal-d6 { transition-delay: 0.6s; }

/* ============================================================
   HERO SECTION
   ============================================================ */

.vv-about-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--about-black);
}

@media (min-width: 1025px) {
	.vv-about-hero {
		align-items: center;
		padding-top: 140px;
	}
}

.vv-about-hero__bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/About Us Banner.webp');
	background-size: cover;
	background-position: center center;
	transform-origin: center;
	animation: heroZoom 12s ease-out forwards;
	will-change: transform;
}

@keyframes heroZoom {
	from { transform: scale(1.08); }
	to   { transform: scale(1.00); }
}

.vv-about-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.92) 0%,
		rgba(0, 0, 0, 0.60) 40%,
		rgba(0, 0, 0, 0.25) 100%
	);
	z-index: 1;
}

.vv-about-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 0 100px;
}

@media (min-width: 1025px) {
	.vv-about-hero__content {
		padding: 40px 0 60px;
	}
}

.vv-about-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-about-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeSlideUp 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vv-about-hero__eyebrow::before {
	content: '';
	display: block;
	width: 32px;
	height: 2px;
	background: var(--about-red);
	flex-shrink: 0;
}

.vv-about-hero__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(3rem, 7vw, 7rem);
	font-weight: 800;
	line-height: 1.02;
	color: var(--about-white);
	margin: 0 0 32px;
	letter-spacing: -0.02em;
	opacity: 0;
	animation: fadeSlideUp 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vv-about-hero__title em {
	font-style: normal;
	color: var(--about-red);
}

.vv-about-hero__subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	max-width: 560px;
	line-height: 1.7;
	margin: 0 0 48px;
	opacity: 0;
	animation: fadeSlideUp 0.9s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vv-about-hero__pills {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeSlideUp 0.9s 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vv-about-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	border-radius: 100px;
	padding: 10px 20px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.vv-about-hero__pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--about-red);
	flex-shrink: 0;
}

.vv-about-hero__scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0;
	animation: fadeIn 1s 1.2s ease forwards;
}

.vv-about-hero__scroll-line {
	width: 1px;
	height: 56px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

.vv-about-hero__scroll-text {
	font-family: 'Manrope', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	transform: rotate(90deg);
	margin-top: 8px;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; transform: scaleY(1); }
	50% { opacity: 1; transform: scaleY(1.2); }
}

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

@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* ============================================================
   STORY SECTION
   ============================================================ */

.vv-about-story {
	background: var(--about-offwhite);
	padding: 120px 0;
}

.vv-about-story__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.vv-about-story__text-col {
	/* left side */
}

.vv-about-story__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 20px;
}

.vv-about-story__eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--about-red);
	display: block;
}

.vv-about-story__heading {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	font-weight: 800;
	color: var(--about-black);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 28px;
}

.vv-about-story__heading em {
	font-style: normal;
	color: var(--about-red);
}

.vv-about-story__body {
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--about-grey-dk);
	margin: 0 0 20px;
}

.vv-about-story__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--about-red);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: gap 0.25s ease;
}

.vv-about-story__cta:hover {
	gap: 16px;
	color: var(--about-red-dark);
}

.vv-about-story__cta svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.vv-about-story__image-col {
	position: relative;
}

.vv-about-story__image-wrap {
	position: relative;
	border-radius: var(--about-radius);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.vv-about-story__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s ease;
}

.vv-about-story__image-wrap:hover img {
	transform: scale(1.04);
}

.vv-about-story__badge {
	position: absolute;
	bottom: -24px;
	left: -24px;
	background: var(--about-red);
	color: var(--about-white);
	border-radius: var(--about-radius-sm);
	padding: 24px 28px;
	box-shadow: 0 16px 40px rgba(232, 0, 28, 0.3);
}

.vv-about-story__badge-num {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
}

.vv-about-story__badge-label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-top: 4px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.vv-about-stats {
	background: var(--about-dark);
	padding: 100px 0;
	overflow: hidden;
}

.vv-about-stats__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-about-stats__header {
	text-align: center;
	margin-bottom: 72px;
}

.vv-about-stats__eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 16px;
}

.vv-about-stats__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 800;
	color: var(--about-white);
	letter-spacing: -0.02em;
	margin: 0;
}

.vv-about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--about-radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.vv-about-stats__item {
	background: var(--about-charcoal);
	padding: 52px 40px;
	text-align: center;
	position: relative;
	transition: background 0.4s ease;
}

.vv-about-stats__item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(232,0,28,0.08) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.vv-about-stats__item:hover::before {
	opacity: 1;
}

.vv-about-stats__item:hover {
	background: #232323;
}

.vv-about-stats__num {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 800;
	color: var(--about-white);
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 12px;
}

.vv-about-stats__suffix {
	font-size: 60%;
	color: var(--about-red);
}

.vv-about-stats__label {
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--about-grey-md);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ============================================================
   STATS RATING STRIP
   ============================================================ */

.vv-about-stats__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 48px;
	padding: 24px 40px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.vv-about-stats__rating-stars {
	display: flex;
	align-items: center;
	gap: 4px;
}

.vv-about-stats__rating-info {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.vv-about-stats__rating-num {
	font-family: 'Manrope', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	color: var(--about-white);
	letter-spacing: -0.04em;
	line-height: 1;
}

.vv-about-stats__rating-label {
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--about-grey-md);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */

.vv-about-values {
	background: var(--about-offwhite);
	padding: 120px 0;
}

.vv-about-values__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-about-values__header {
	text-align: center;
	margin-bottom: 72px;
}

.vv-about-values__eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 16px;
}

.vv-about-values__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	color: var(--about-black);
	letter-spacing: -0.02em;
	margin: 0;
}

.vv-about-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.vv-about-values__card {
	background: var(--about-white);
	border-radius: var(--about-radius);
	padding: 48px 40px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	cursor: default;
}

.vv-about-values__card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--about-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-about-values__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.vv-about-values__card:hover::before {
	transform: scaleX(1);
}

.vv-about-values__icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(232, 0, 28, 0.08);
	border: 1px solid rgba(232, 0, 28, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	transition: transform 0.4s ease, background 0.4s ease;
	color: var(--about-red);
}

.vv-about-values__icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--about-red);
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vv-about-values__card:hover .vv-about-values__icon {
	transform: scale(1.1) rotate(-5deg);
}

.vv-about-values__card-title {
	font-family: 'Manrope', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--about-black);
	letter-spacing: -0.01em;
	margin: 0 0 16px;
}

.vv-about-values__card-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--about-grey-md);
	margin: 0;
}

.vv-about-values__card-num {
	position: absolute;
	top: 32px;
	right: 32px;
	font-family: 'Manrope', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.035);
	letter-spacing: -0.04em;
	line-height: 1;
	user-select: none;
}

/* ============================================================
   OWNER SECTION
   ============================================================ */

.vv-about-owner {
	background: var(--about-black);
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}

.vv-about-owner::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(232,0,28,0.07) 0%, transparent 65%);
	pointer-events: none;
}

.vv-about-owner::after {
	content: '';
	position: absolute;
	bottom: -30%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 65%);
	pointer-events: none;
}

.vv-about-owner__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 100px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.vv-about-owner__image-col {
	position: relative;
}

.vv-about-owner__image-frame {
	position: relative;
	border-radius: var(--about-radius);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.vv-about-owner__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(15%);
}

.vv-about-owner__image-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.55) 0%,
		transparent 50%
	);
}

.vv-about-owner__image-tag {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.vv-about-owner__image-tag-name {
	font-family: 'Manrope', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--about-white);
	line-height: 1.2;
	display: block;
}

.vv-about-owner__image-tag-role {
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: block;
	margin-top: 2px;
}

.vv-about-owner__accent-line {
	position: absolute;
	top: 40px;
	right: -20px;
	width: 4px;
	height: 120px;
	background: linear-gradient(to bottom, var(--about-red), transparent);
	border-radius: 2px;
}

.vv-about-owner__text-col {
	/* right side */
}

.vv-about-owner__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 24px;
}

.vv-about-owner__eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--about-red);
	display: block;
}

.vv-about-owner__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 3vw, 3.25rem);
	font-weight: 800;
	color: var(--about-white);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 32px;
}

.vv-about-owner__title em {
	font-style: normal;
	color: var(--about-red);
}

.vv-about-owner__quote {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 28px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.04);
	border-left: 3px solid #e8001c;
	border-radius: 0 8px 8px 0;
}

.vv-about-owner__quote-mark {
	font-family: Georgia, serif;
	font-size: 2.2rem;
	color: #e8001c;
	line-height: 1;
	font-weight: 700;
	flex-shrink: 0;
	opacity: 1;
}

.vv-about-owner__quote-text {
	display: none;
}

.vv-about-owner__tagline {
	margin: 0;
	padding: 0;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: clamp(0.82rem, 1.2vw, 0.92rem);
	font-weight: 800;
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #e8001c;
	line-height: 1.35;
}

.vv-about-owner__bio {
	font-family: 'Manrope', sans-serif;
	font-size: 1.0rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 20px;
}

.vv-about-owner__socials {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.vv-about-owner__social-link {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vv-about-owner__social-link:hover {
	background: var(--about-red);
	color: var(--about-white);
	transform: translateY(-3px);
	border-color: var(--about-red);
}

.vv-about-owner__social-link svg {
	width: 18px;
	height: 18px;
}

/* ============================================================
   CAR CULTURE GALLERY SECTION
   ============================================================ */

.vv-about-culture {
	padding: 100px 0;
	background: var(--about-black);
	overflow: hidden;
}

.vv-about-culture__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-about-culture__header {
	text-align: center;
	margin-bottom: 64px;
}

.vv-about-culture__eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 16px;
}

.vv-about-culture__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	color: var(--about-white);
	margin: 0 0 20px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.vv-about-culture__title em {
	font-style: normal;
	color: var(--about-red);
}

.vv-about-culture__subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.5);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ── Grid ── */
.vv-about-culture__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 240px;
	gap: 12px;
}

.vv-about-culture__item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

/* Wide items span 2 columns */
.vv-about-culture__item--wide {
	grid-column: span 2;
}

/* Tall items span 2 rows */
.vv-about-culture__item--tall {
	grid-row: span 2;
}

/* Normal = 1 col × 1 row (default) */
.vv-about-culture__item--normal {
	grid-column: span 1;
}

.vv-about-culture__img-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.vv-about-culture__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-about-culture__item:hover .vv-about-culture__img {
	transform: scale(1.07);
}

/* ── Overlay ── */
.vv-about-culture__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.80) 0%,
		rgba(0, 0, 0, 0.0) 55%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px 18px;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.vv-about-culture__item:hover .vv-about-culture__overlay {
	opacity: 1;
}

.vv-about-culture__tag {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--about-red);
	background: rgba(232, 0, 28, 0.12);
	border: 1px solid rgba(232, 0, 28, 0.35);
	border-radius: 4px;
	padding: 2px 8px;
	margin-bottom: 6px;
	width: fit-content;
}

.vv-about-culture__caption {
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.vv-about-culture__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 200px;
	}
	.vv-about-culture__item--tall {
		grid-row: span 1;
	}
}

@media (max-width: 540px) {
	.vv-about-culture__grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 160px;
		gap: 8px;
	}
	.vv-about-culture__item--wide,
	.vv-about-culture__item--tall {
		grid-column: span 1;
		grid-row: span 1;
	}
	.vv-about-culture__inner {
		padding: 0 16px;
	}
}

/* ============================================================
   MARQUEE SECTION
   ============================================================ */

.vv-about-marquee {
	background: var(--about-red);
	padding: 0;
	overflow: hidden;
}

.vv-about-marquee__track {
	display: flex;
	width: max-content;
	animation: marqueeScroll 30s linear infinite;
	will-change: transform;
}

.vv-about-marquee__track:hover {
	animation-play-state: paused;
}

@keyframes marqueeScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.vv-about-marquee__item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 40px;
	white-space: nowrap;
}

.vv-about-marquee__text {
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--about-white);
}

.vv-about-marquee__sep {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.vv-about-why {
	background: var(--about-offwhite);
	padding: 120px 0;
}

.vv-about-why__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-about-why__header {
	text-align: center;
	margin-bottom: 72px;
}

.vv-about-why__eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 16px;
}

.vv-about-why__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	color: var(--about-black);
	letter-spacing: -0.02em;
	margin: 0;
}

.vv-about-why__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.vv-about-why__item {
	background: var(--about-white);
	border-radius: var(--about-radius-sm);
	padding: 36px 32px;
	display: flex;
	align-items: flex-start;
	gap: 24px;
	border: 1px solid rgba(0,0,0,0.06);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vv-about-why__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.vv-about-why__item-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(232, 0, 28, 0.08);
	border: 1px solid rgba(232, 0, 28, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--about-red);
	transition: background 0.35s ease;
}

.vv-about-why__item:hover .vv-about-why__item-icon {
	background: rgba(232, 0, 28, 0.14);
}

.vv-about-why__item-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--about-red);
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vv-about-why__item-text h4 {
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--about-black);
	margin: 0 0 8px;
}

.vv-about-why__item-text p {
	font-family: 'Manrope', sans-serif;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--about-grey-md);
	margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.vv-about-cta {
	background: var(--about-dark);
	padding: 140px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.vv-about-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(232,0,28,0.14) 0%, transparent 70%);
	pointer-events: none;
}

.vv-about-cta__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.vv-about-cta__eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 20px;
}

.vv-about-cta__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 800;
	color: var(--about-white);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 20px;
}

.vv-about-cta__title em {
	font-style: normal;
	color: var(--about-red);
}

.vv-about-cta__desc {
	font-family: 'Manrope', sans-serif;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	margin: 0 0 48px;
}

.vv-about-cta__buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.vv-about-cta__btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--about-red);
	color: var(--about-white);
	text-decoration: none;
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	padding: 18px 40px;
	border-radius: 100px;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 8px 24px rgba(232,0,28,0.35);
}

.vv-about-cta__btn-primary:hover {
	background: var(--about-red-dark);
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(232,0,28,0.4);
	color: var(--about-white);
}

.vv-about-cta__btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	padding: 18px 40px;
	border-radius: 100px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.vv-about-cta__btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--about-white);
	transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
	.vv-about-owner__inner {
		grid-template-columns: 320px 1fr;
		gap: 60px;
	}
}

@media (max-width: 900px) {
	.vv-about-story__inner {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.vv-about-story__image-col {
		order: -1;
	}

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

	.vv-about-values__grid {
		grid-template-columns: 1fr;
	}

	.vv-about-owner__inner {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.vv-about-owner__image-frame {
		max-width: 380px;
		margin: 0 auto;
	}

	.vv-about-why__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.vv-about-hero__title {
		font-size: 2.5rem;
	}

	.vv-about-hero__content {
		padding: 0 0 80px;
	}

	.vv-about-hero__inner,
	.vv-about-story__inner,
	.vv-about-stats__inner,
	.vv-about-values__inner,
	.vv-about-owner__inner,
	.vv-about-why__inner,
	.vv-about-cta__inner {
		padding: 0 20px;
	}

	.vv-about-story,
	.vv-about-values,
	.vv-about-why {
		padding: 80px 0;
	}

	.vv-about-stats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.vv-about-stats__item {
		padding: 36px 20px;
	}

	.vv-about-owner {
		padding: 100px 0;
	}

	.vv-about-cta {
		padding: 100px 0;
	}

	.vv-about-story__badge {
		bottom: -16px;
		left: 16px;
	}
}

/* ============================================================
   SHOWROOM & MOMENTS GALLERY CAROUSEL
   ============================================================ */

.vv-about-gallery {
	padding: 110px 0;
	background: var(--about-dark);
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vv-about-gallery__header {
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
	padding: 0 24px;
}

.vv-about-gallery__eyebrow {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--about-red);
	margin-bottom: 12px;
}

.vv-about-gallery__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 16px;
}

.vv-about-gallery__title em {
	font-style: normal;
	color: var(--about-red);
}

.vv-about-gallery__subtitle {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--about-grey-md);
	margin: 0;
}

.vv-about-gallery__carousel-wrap {
	position: relative;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 60px;
}

.vv-about-gallery__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 10px 0 20px;
	cursor: grab;
	user-select: none;
	-webkit-overflow-scrolling: touch;
}

.vv-about-gallery__track.active {
	cursor: grabbing;
	scroll-behavior: auto;
}

.vv-about-gallery__track::-webkit-scrollbar {
	display: none;
}

.vv-about-gallery__slide {
	flex: 0 0 360px;
	min-width: 0;
}

@media (max-width: 768px) {
	.vv-about-gallery__slide {
		flex: 0 0 280px;
	}
	.vv-about-gallery__carousel-wrap {
		padding: 0 20px;
	}
}

.vv-about-gallery__card {
	position: relative;
	height: 440px;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vv-about-gallery__card:hover {
	transform: translateY(-6px);
}

.vv-about-gallery__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vv-about-gallery__card:hover img {
	transform: scale(1.06);
}

.vv-about-gallery__card-caption {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 24px;
	color: #fff;
}

.vv-about-gallery__tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--about-red);
	background: rgba(232, 0, 28, 0.15);
	border: 1px solid rgba(232, 0, 28, 0.3);
	padding: 4px 12px;
	border-radius: 14px;
	margin-bottom: 8px;
}

.vv-about-gallery__card-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

.vv-about-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(17, 17, 17, 0.85);
	backdrop-filter: blur(8px);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s ease;
}

.vv-about-gallery__nav:hover {
	background: var(--about-red);
	border-color: var(--about-red);
	transform: translateY(-50%) scale(1.08);
}

.vv-about-gallery__nav--prev {
	left: 10px;
}

.vv-about-gallery__nav--next {
	right: 10px;
}
