/* =============================================================
   VETERAN PRO COATING — HOMEPAGE STYLES
   Section-specific styles load here (hero, services, work, etc.).
   Base tokens + shared components live in style.css.
   ============================================================= */

/* =============================================================
   HERO — two-column: content + estimate form card.
   Background photo with scrims; flare accent; hollow headline word.
   ============================================================= */
.vpc-hero {
	position: relative;
	overflow: hidden;
	background: var(--vpc-black);
	color: var(--vpc-white);
	isolation: isolate;
}

/* Background image */
.vpc-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -3;
}

/* Scrim — darkens the photo for text legibility. Heavier on the left
   where the content sits, lighter on the right behind the form card. */
.vpc-hero-scrim {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.80) 38%, rgba(10,10,11,0.55) 70%, rgba(10,10,11,0.45) 100%),
		linear-gradient(0deg, rgba(10,10,11,0.65) 0%, rgba(10,10,11,0.15) 50%);
	pointer-events: none;
}

/* Flare — removed orange glow, keeping the div in place. */
.vpc-hero-flare {
	display: none;
}

.vpc-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
	min-height: clamp(580px, 82vh, 800px);
	padding-top: clamp(56px, 7vw, 92px);
	padding-bottom: clamp(56px, 7vw, 92px);
}

/* ----- Left: content ----- */
.vpc-hero-content {
	max-width: 640px;
}

.vpc-hero-eyebrow {
	color: var(--vpc-orange);
	margin-bottom: 22px;
}

.vpc-hero-title {
	font-size: clamp(40px, 5.6vw, 76px);
	line-height: 0.98;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0 0 22px;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
}

.vpc-hero-title .vpc-hollow {
	display: inline-block;
}

.vpc-hero-lead {
	max-width: 540px;
	margin: 0 0 30px;
	font-size: var(--vpc-fs-lead);
	line-height: 1.6;
	color: var(--vpc-steel-light);
}

.vpc-hero-lead em {
	color: var(--vpc-white);
	font-style: italic;
	font-weight: 500;
}

/* Trust strip */
.vpc-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 4vw, 48px);
	list-style: none;
	margin: 0;
	padding: 26px 0 0;
	border-top: 1px solid var(--vpc-line);
}

.vpc-hero-trust li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vpc-hero-trust strong {
	font-family: var(--vpc-font-head);
	font-size: clamp(20px, 2.6vw, 28px);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--vpc-white);
	line-height: 1;
}

.vpc-hero-trust span {
	font-size: 13px;
	letter-spacing: 0.03em;
	color: var(--vpc-steel);
}

/* ----- Right: estimate form card — dark smoked glass ----- */
.vpc-hero-form-card {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 540px;
	justify-self: end;
	overflow: hidden;

	padding: 0 clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 34px);
	border-radius: 28px;

	border: 1.5px solid rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(
			145deg,
			rgba(18, 19, 22, 0.88) 0%,
			rgba(8, 8, 10, 0.78) 48%,
			rgba(14, 15, 18, 0.84) 100%
		);

	backdrop-filter: blur(20px) saturate(125%);
	-webkit-backdrop-filter: blur(20px) saturate(125%);

	box-shadow:
		0 34px 90px rgba(0, 0, 0, 0.62),
		0 0 0 1px rgba(255, 255, 255, 0.045),
		inset 0 1px 0 rgba(255, 255, 255, 0.10),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.vpc-hero-form-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(
			circle at 10% 0%,
			rgba(255, 255, 255, 0.085) 0%,
			rgba(255, 255, 255, 0.035) 34%,
			transparent 62%
		),
		radial-gradient(
			circle at 100% 8%,
			rgba(255, 255, 255, 0.055) 0%,
			transparent 46%
		);
}

.vpc-hero-form-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.26) 50%,
		transparent 100%
	);
	pointer-events: none;
}

/* Card header */
.vpc-hero-form-top {
	position: relative;
	z-index: 1;

	margin: 0 calc(-1 * clamp(28px, 3vw, 40px));
	padding: clamp(24px, 2.7vw, 34px) clamp(28px, 3vw, 40px) clamp(20px, 2vw, 26px);
	margin-bottom: clamp(20px, 2.2vw, 28px);

	border-bottom: 1px solid rgba(255, 255, 255, 0.11);
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.07),
			rgba(255, 255, 255, 0.025)
		);
}

.vpc-hero-form-body {
	position: relative;
	z-index: 1;
}

.vpc-hero-form-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 13px;
	padding: 6px 13px;
	border-radius: var(--vpc-radius-pill);

	border: 1px solid rgba(255, 255, 255, 0.20);
	background: rgba(255, 255, 255, 0.065);
	color: var(--vpc-white);

	font-family: var(--vpc-font-head);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.10),
		0 12px 28px rgba(0, 0, 0, 0.20);
}

.vpc-hero-form-badge::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
	animation: vpc-pulse 2s ease-in-out infinite;
}

@keyframes vpc-pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.55;
		transform: scale(0.72);
	}
}

.vpc-hero-form-top strong {
	display: block;
	color: var(--vpc-white);
	font-family: var(--vpc-font-head);
	font-size: clamp(26px, 2.35vw, 36px);
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.015em;
	margin: 0 0 10px;
	text-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
}

.vpc-hero-form-top p {
	margin: 0;
	max-width: 390px;
	color: rgba(199, 204, 210, 0.78);
	font-size: 13.5px;
	line-height: 1.5;
}

/* Gravity Forms — dark glass fields */
.vpc-hero-form-card .gform_wrapper,
.vpc-hero-form-card .gform_wrapper.gravity-theme,
.vpc-hero-form-card form {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.vpc-hero-form-card .gform_fields {
	width: 100% !important;
	row-gap: 13px !important;
}

.vpc-hero-form-card .gfield_label {
	color: rgba(199, 204, 210, 0.80) !important;
	font-family: var(--vpc-font-body) !important;
	font-size: 10.5px !important;
	font-weight: 700 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	margin-bottom: 6px !important;
}

.vpc-hero-form-card .gfield_required {
	display: none !important;
}

.vpc-hero-form-card input[type="text"],
.vpc-hero-form-card input[type="email"],
.vpc-hero-form-card input[type="tel"],
.vpc-hero-form-card input[type="number"],
.vpc-hero-form-card input[type="url"],
.vpc-hero-form-card textarea,
.vpc-hero-form-card select {
	width: 100% !important;
	min-height: 48px !important;
	padding: 13px 15px !important;
	border-radius: 14px !important;

	border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.075),
			rgba(255, 255, 255, 0.035)
		) !important;

	color: var(--vpc-white) !important;
	font-family: var(--vpc-font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.25 !important;
	outline: none !important;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.075),
		0 10px 26px rgba(0, 0, 0, 0.20) !important;

	backdrop-filter: blur(12px) saturate(115%);
	-webkit-backdrop-filter: blur(12px) saturate(115%);

	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease !important;

	-webkit-appearance: none;
	appearance: none;
}

.vpc-hero-form-card input[type="text"]:focus,
.vpc-hero-form-card input[type="email"]:focus,
.vpc-hero-form-card input[type="tel"]:focus,
.vpc-hero-form-card input[type="number"]:focus,
.vpc-hero-form-card input[type="url"]:focus,
.vpc-hero-form-card textarea:focus,
.vpc-hero-form-card select:focus {
	border-color: rgba(255, 255, 255, 0.38) !important;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.105),
			rgba(255, 255, 255, 0.052)
		) !important;

	box-shadow:
		0 0 0 4px rgba(255, 255, 255, 0.055),
		0 14px 34px rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;

	transform: translateY(-1px);
}

.vpc-hero-form-card input::placeholder,
.vpc-hero-form-card textarea::placeholder {
	color: rgba(199, 204, 210, 0.42) !important;
}

.vpc-hero-form-card textarea {
	height: 88px !important;
	resize: none !important;
}

/* Dropdown */
.vpc-hero-form-card select {
	cursor: pointer !important;
	padding-right: 42px !important;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.72) 50%),
		linear-gradient(135deg, rgba(255,255,255,0.72) 50%, transparent 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)) !important;
	background-position:
		calc(100% - 22px) 52%,
		calc(100% - 16px) 52%,
		0 0 !important;
	background-size:
		6px 6px,
		6px 6px,
		100% 100% !important;
	background-repeat: no-repeat !important;
}

.vpc-hero-form-card select option {
	color: #1a1a1a;
	background: #ffffff;
}

/* Validation */
.vpc-hero-form-card .gform_validation_errors {
	border-radius: 14px !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.20) !important;
	color: var(--vpc-white) !important;
	box-shadow: none !important;
}

.vpc-hero-form-card .validation_message,
.vpc-hero-form-card .gfield_validation_message {
	padding-top: 6px !important;
	background: transparent !important;
	border: 0 !important;
	color: rgba(255, 210, 210, 0.88) !important;
	font-size: 12px !important;
}

/* Submit button */
.vpc-hero-form-card .gform_footer,
.vpc-hero-form-card .gform-footer {
	margin-top: 36px !important;
	padding: 0 !important;
}

.vpc-hero-form-card .gform_footer input[type="submit"],
.vpc-hero-form-card .gform-footer input[type="submit"],
.vpc-hero-form-body .gform_button {
	width: 100% !important;
	min-height: 54px !important;
	padding: 16px 24px !important;
	border-radius: var(--vpc-radius-pill) !important;

	background: var(--vpc-flare) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: var(--vpc-white) !important;

	font-family: var(--vpc-font-head) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.075em !important;
	text-transform: uppercase !important;

	cursor: pointer !important;

	box-shadow:
		0 16px 34px rgba(0, 0, 0, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		color 0.2s ease !important;
}

.vpc-hero-form-card .gform_footer input[type="submit"]:hover,
.vpc-hero-form-card .gform-footer input[type="submit"]:hover,
.vpc-hero-form-body .gform_button:hover {
	transform: translateY(-2px);
	background: #111215 !important;
	color: var(--vpc-white) !important;
	box-shadow:
		0 20px 44px rgba(0, 0, 0, 0.38),
		inset 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

/* Optional trust strip below the form */
.vpc-form-card-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: clamp(17px, 2vw, 24px);
	padding-top: clamp(15px, 1.5vw, 19px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vpc-form-card-trust-stars {
	color: var(--vpc-white);
	font-size: 13px;
	letter-spacing: 1.5px;
	line-height: 1;
	text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.vpc-form-card-trust-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
}

.vpc-form-card-trust-text {
	color: rgba(199, 204, 210, 0.66);
	font-size: 12px;
	line-height: 1;
}

.vpc-form-card-trust-text strong {
	color: var(--vpc-white);
	font-weight: 800;
}

/* Fallback */
.vpc-form-fallback {
	padding: 16px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	color: var(--vpc-steel-light);
	font-size: 14px;
	text-align: center;
	background: rgba(255, 255, 255, 0.045);
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
	.vpc-hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
		min-height: 0;
		text-align: center;
	}

	.vpc-hero-content {
		max-width: 100%;
	}

	.vpc-hero-eyebrow {
		justify-content: center;
	}

	.vpc-hero-title {
		font-size: clamp(48px, 11vw, 72px);
	}

	.vpc-hero-lead {
		margin-left: auto;
		margin-right: auto;
	}

	.vpc-hero-trust {
		justify-content: center;
	}

	.vpc-hero-trust li {
		align-items: center;
		text-align: center;
	}

	.vpc-hero-form-card {
		width: 100%;
		max-width: 640px;
		margin: 0 auto;
		justify-self: center;
	}

	.vpc-hero-form-top {
		text-align: center;
	}

	.vpc-hero-form-top p {
		margin-left: auto;
		margin-right: auto;
	}

	.vpc-hero-form-badge {
		margin-left: auto;
		margin-right: auto;
	}

	.vpc-hero-scrim {
		background:
			linear-gradient(0deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.72) 60%, rgba(10,10,11,0.55) 100%);
	}
}

@media (max-width: 600px) {
	.vpc-hero-title {
		font-size: clamp(44px, 13vw, 64px);
	}

	.vpc-hero-trust {
		gap: 18px;
	}

	.vpc-hero-form-card {
		width: 100%;
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
		padding-bottom: 22px;
		border-radius: 22px;
		backdrop-filter: blur(16px) saturate(125%);
		-webkit-backdrop-filter: blur(16px) saturate(125%);
	}

	.vpc-hero-form-top {
		margin-left: -18px;
		margin-right: -18px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.vpc-hero-form-top strong {
		font-size: clamp(24px, 7vw, 30px);
	}

	.vpc-form-card-trust {
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* =============================================================
   SERVICES SECTION — with parallax background
   ============================================================= */
.vpc-services {
	position: relative;
	color: var(--vpc-white);
	padding: clamp(72px, 8vw, 120px) 0;
	overflow: hidden;
	isolation: isolate;
}

/* Parallax layer */
.vpc-services-parallax {
	position: absolute;
	inset: -30% 0;           /* extend beyond section so scroll reveals more */
	z-index: -2;
	background:
		url('https://vetprocoatings.wpenginepowered.com/wp-content/uploads/2026/06/epoxy-black-flooring2.webp')
		center center / cover no-repeat;
	background-attachment: fixed;
	will-change: transform;
}

/* Dark overlay over the parallax image */
.vpc-services-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			180deg,
			rgba(10, 10, 11, 0.88) 0%,
			rgba(10, 10, 11, 0.80) 50%,
			rgba(10, 10, 11, 0.88) 100%
		);
	pointer-events: none;
}

/* iOS / touch device fallback — fixed attachment doesn't work on iOS */
@supports (-webkit-overflow-scrolling: touch) {
	.vpc-services-parallax {
		inset: 0;
		background-attachment: scroll;
		background-position: center center;
	}
}

@media (max-width: 768px) {
	.vpc-services-parallax {
		inset: 0;
		background-attachment: scroll;
	}
}

.vpc-services-inner {
	display: flex;
	flex-direction: column;
	gap: clamp(44px, 6vw, 64px);
}

/* ----- Header ----- */
.vpc-services-header {
	max-width: 760px;
}

.vpc-services-eyebrow {
	color: var(--vpc-red);
	margin-bottom: 18px;
}

.vpc-services-header h2 {
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.98;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0 0 18px;
}

.vpc-services-header p {
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	line-height: 1.6;
	margin: 0;
	max-width: 620px;
}

/* ----- Grid ----- */
.vpc-services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

/* Top row: 3 cards each span 2 of 6 columns */
.vpc-service-card:not(.vpc-service-card--wide) {
	grid-column: span 2;
}

/* Bottom row: 2 cards each span 3 of 6 columns */
.vpc-service-card--wide {
	grid-column: span 3;
}

/* ----- Cards — glass over the parallax ----- */
.vpc-service-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--vpc-radius-lg);
	background: rgba(22, 23, 26, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	overflow: hidden;
	text-decoration: none;
	color: var(--vpc-white);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38);
	transition: transform 220ms var(--vpc-ease),
		border-color 220ms var(--vpc-ease),
		box-shadow 220ms var(--vpc-ease);
}

.vpc-service-card:hover {
	transform: translateY(-5px);
	border-color: var(--vpc-red);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(224, 30, 43, 0.25);
	color: var(--vpc-white);
}

/* ----- Card image ----- */
.vpc-service-img {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--vpc-charcoal-2);
}

.vpc-service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.01);
	transition: transform 420ms var(--vpc-ease);
}

.vpc-service-card:hover .vpc-service-img img {
	transform: scale(1.06);
}

.vpc-service-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
		rgba(10, 10, 11, 0.72) 0%,
		rgba(10, 10, 11, 0.08) 52%,
		rgba(10, 10, 11, 0) 100%);
	pointer-events: none;
}

/* Number badge */
.vpc-service-num {
	position: absolute;
	bottom: 14px;
	left: 16px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border-radius: var(--vpc-radius-pill);
	background: var(--vpc-red);
	color: var(--vpc-white);
	font-family: var(--vpc-font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ----- Card body ----- */
.vpc-service-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: clamp(20px, 2.4vw, 28px);
	gap: 10px;
}

.vpc-service-body h3 {
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--vpc-white);
	margin: 0;
	line-height: 1.05;
}

.vpc-service-body p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--vpc-steel-light);
	margin: 0;
	flex: 1;
}

.vpc-service-cta {
	font-family: var(--vpc-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vpc-red);
	margin-top: 6px;
}

.vpc-service-cta span {
	display: inline-block;
	transition: transform 180ms var(--vpc-ease);
}

.vpc-service-card:hover .vpc-service-cta span {
	transform: translateX(4px);
}

/* ----- Footer CTA strip ----- */
.vpc-services-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(24px, 3vw, 34px);
	border-radius: var(--vpc-radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(22, 23, 26, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.vpc-services-footer p {
	margin: 0;
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	max-width: 560px;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
	.vpc-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.vpc-service-card:not(.vpc-service-card--wide),
	.vpc-service-card--wide {
		grid-column: span 1;
	}
}

@media (max-width: 720px) {
	.vpc-services-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.vpc-service-card:not(.vpc-service-card--wide),
	.vpc-service-card--wide {
		grid-column: span 1;
	}
	.vpc-services-header { max-width: 100%; }
	.vpc-services-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	.vpc-services-footer .vpc-btn {
		width: 100%;
		text-align: center;
	}
}
/* =============================================================
   WHY VPC SECTION
   ============================================================= */
.vpc-why {
	position: relative;
	background: var(--vpc-charcoal);
	color: var(--vpc-white);
	padding: clamp(80px, 9vw, 130px) 0;
	border-top: 1px solid var(--vpc-line);
	border-bottom: 1px solid var(--vpc-line);
}

.vpc-why-inner {
	display: grid;
	grid-template-columns: 1fr 0.75fr;
	gap: clamp(52px, 7vw, 100px);
	align-items: center;
}

/* ----- Left: Copy ----- */
.vpc-why-content {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.vpc-why-eyebrow {
	color: var(--vpc-red);
}

.vpc-why-content h2 {
	font-size: clamp(36px, 5.2vw, 68px);
	line-height: 0.97;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0;
}

.vpc-why-lead {
	font-size: var(--vpc-fs-lead);
	line-height: 1.65;
	color: var(--vpc-white);
	margin: 0;
	font-weight: 500;
}

.vpc-why-body {
	font-size: var(--vpc-fs-body);
	line-height: 1.75;
	color: var(--vpc-steel-light);
	margin: 0;
}

/* ----- Right: Photo ----- */
.vpc-why-photo {
	display: flex;
	justify-content: center;
}

.vpc-why-photo-wrap {
	position: relative;
	width: 100%;
	max-width: 460px;
	border-radius: var(--vpc-radius-lg);
	overflow: hidden;
	border: 1px solid var(--vpc-line);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.50);
}

.vpc-why-photo-wrap img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Placeholder state when image hasn't loaded yet */
.vpc-why-photo--placeholder {
	aspect-ratio: 5 / 6;
	background: var(--vpc-charcoal-2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.vpc-why-photo--placeholder::after {
	content: "Owner Photo";
	color: var(--vpc-steel);
	font-family: var(--vpc-font-head);
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Veteran badge overlaid on photo */
.vpc-why-photo-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 18px;
	background: rgba(10, 10, 11, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(224, 30, 43, 0.35);
	border-radius: var(--vpc-radius);
}

.vpc-why-photo-badge strong {
	font-family: var(--vpc-font-head);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--vpc-white);
	line-height: 1;
}

.vpc-why-photo-badge span {
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--vpc-steel);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
	.vpc-why-inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.vpc-why-photo {
		order: -1;
	}

	.vpc-why-photo-wrap {
		max-width: 480px;
		margin: 0 auto;
	}
}

@media (max-width: 600px) {
	.vpc-why-photo-wrap {
		max-width: 100%;
	}
}
/* =============================================================
   SURFACES SECTION
   ============================================================= */
.vpc-surfaces {
	background: var(--vpc-black);
	color: var(--vpc-white);
	padding: clamp(72px, 8vw, 120px) 0;
	border-top: 1px solid var(--vpc-line);
}

.vpc-surfaces-inner {
	display: flex;
	flex-direction: column;
	gap: clamp(44px, 6vw, 60px);
}

/* ----- Header ----- */
.vpc-surfaces-header {
	max-width: 680px;
}

.vpc-surfaces-eyebrow {
	color: var(--vpc-red);
	margin-bottom: 18px;
}

.vpc-surfaces-header h2 {
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.97;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0 0 18px;
}

.vpc-surfaces-header p {
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	line-height: 1.6;
	margin: 0;
}

/* ----- Grid ----- */
.vpc-surfaces-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

/* ----- Cards ----- */
.vpc-surface-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(24px, 2.8vw, 34px);
	border-radius: var(--vpc-radius-lg);
	background: var(--vpc-charcoal);
	border: 1px solid var(--vpc-line);
	transition: border-color 220ms var(--vpc-ease),
		background 220ms var(--vpc-ease),
		transform 220ms var(--vpc-ease);
}

.vpc-surface-card:hover {
	border-color: rgba(224, 30, 43, 0.45);
	background: var(--vpc-charcoal-2);
	transform: translateY(-3px);
}

/* Icon */
.vpc-surface-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(224, 30, 43, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vpc-red);
	flex-shrink: 0;
	transition: background 220ms var(--vpc-ease);
}

.vpc-surface-card:hover .vpc-surface-icon {
	background: rgba(224, 30, 43, 0.20);
}

.vpc-surface-icon svg {
	width: 22px;
	height: 22px;
}

/* Label */
.vpc-surface-card strong {
	display: block;
	font-family: var(--vpc-font-head);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--vpc-white);
	line-height: 1;
}

/* Description */
.vpc-surface-card p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--vpc-steel-light);
	margin: 0;
}

/* ----- No asphalt note ----- */
.vpc-surfaces-note {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	border-radius: var(--vpc-radius-pill);
	background: var(--vpc-charcoal);
	border: 1px solid var(--vpc-line);
	align-self: flex-start;
}

.vpc-surfaces-note p {
	margin: 0;
	font-size: 14px;
	color: var(--vpc-steel-light);
}

.vpc-surfaces-note strong {
	color: var(--vpc-white);
}

/* ----- Footer CTA ----- */
.vpc-surfaces-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(24px, 3vw, 34px);
	border-radius: var(--vpc-radius-lg);
	border: 1px solid var(--vpc-line);
	background: var(--vpc-charcoal);
}

.vpc-surfaces-cta p {
	margin: 0;
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	max-width: 480px;
}

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

@media (max-width: 640px) {
	.vpc-surfaces-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.vpc-surfaces-header { max-width: 100%; }
	.vpc-surfaces-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	.vpc-surfaces-cta .vpc-btn {
		width: 100%;
		text-align: center;
	}
}
/* =============================================================
   WARRANTY SECTION
   ============================================================= */
.vpc-warranty {
	position: relative;
	background: var(--vpc-charcoal);
	color: var(--vpc-white);
	padding: clamp(56px, 7vw, 88px) 0;
	overflow: hidden;
}

/* Subtle texture overlay */
.vpc-warranty::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg,
			rgba(0, 0, 0, 0.18) 0%,
			rgba(0, 0, 0, 0) 50%,
			rgba(0, 0, 0, 0.12) 100%);
	pointer-events: none;
}

/* Grid pattern for depth */
.vpc-warranty::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}

.vpc-warranty-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: clamp(36px, 5vw, 52px);
}

/* ----- Eyebrow ----- */
.vpc-warranty-eyebrow {
	color: rgba(255, 255, 255, 0.85);
}

.vpc-warranty-eyebrow span {
	background: rgba(255, 255, 255, 0.5);
}

/* ----- Warranty cards inline ----- */
.vpc-warranty-cards {
	display: flex;
	align-items: center;
	gap: 0;
}

.vpc-warranty-card {
	flex: 1;
	display: flex;
	align-items: center;
	gap: clamp(24px, 3vw, 44px);
	padding: clamp(28px, 3.5vw, 44px);
	border-radius: var(--vpc-radius-lg);
	background: rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

/* The big year number */
.vpc-warranty-years {
	font-family: var(--vpc-font-head);
	font-size: clamp(72px, 10vw, 120px);
	font-weight: 700;
	line-height: 1;
	color: var(--vpc-white);
	letter-spacing: -0.03em;
	flex-shrink: 0;
}

.vpc-warranty-years span {
	font-size: 0.38em;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	vertical-align: super;
	opacity: 0.85;
}

.vpc-warranty-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vpc-warranty-body strong {
	display: block;
	font-family: var(--vpc-font-head);
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--vpc-white);
	line-height: 1.05;
}

.vpc-warranty-body p {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

/* Divider between cards */
.vpc-warranty-divider {
	width: 1px;
	align-self: stretch;
	background: rgba(255, 255, 255, 0.22);
	margin: 0 clamp(20px, 3vw, 40px);
	flex-shrink: 0;
}

/* ----- Bottom CTA strip ----- */
.vpc-warranty-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: clamp(24px, 3vw, 36px);
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.vpc-warranty-cta p {
	margin: 0;
	font-size: var(--vpc-fs-lead);
	color: rgba(255, 255, 255, 0.90);
	max-width: 560px;
	font-weight: 500;
}

/* White button on red background */
.vpc-warranty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 30px;
	font-family: var(--vpc-font-head);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: var(--vpc-radius-pill);
	background: var(--vpc-white);
	color: var(--vpc-red) !important;
	border: 2px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 180ms var(--vpc-ease),
		color 180ms var(--vpc-ease),
		transform 180ms var(--vpc-ease);
}

.vpc-warranty-btn:hover {
	background: transparent;
	color: var(--vpc-white) !important;
	border-color: var(--vpc-white);
	transform: translateY(-2px);
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
	.vpc-warranty-cards {
		flex-direction: column;
		gap: 18px;
	}

	.vpc-warranty-card {
		width: 100%;
	}

	.vpc-warranty-divider {
		width: 100%;
		height: 1px;
		margin: 0;
		align-self: auto;
	}

	.vpc-warranty-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.vpc-warranty-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 520px) {
	.vpc-warranty-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
/* =============================================================
   GALLERY SECTION — masonry grid
   ============================================================= */
.vpc-gallery {
	background: var(--vpc-black);
	color: var(--vpc-white);
	padding: clamp(72px, 8vw, 120px) 0;
	border-top: 1px solid var(--vpc-line);
}

.vpc-gallery-inner {
	display: flex;
	flex-direction: column;
	gap: clamp(44px, 6vw, 60px);
}

/* ----- Header ----- */
.vpc-gallery-header {
	max-width: 680px;
}

.vpc-gallery-eyebrow {
	color: var(--vpc-red);
	margin-bottom: 18px;
}

.vpc-gallery-header h2 {
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.97;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0 0 18px;
}

.vpc-gallery-header p {
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	line-height: 1.6;
	margin: 0;
}

/* ----- Masonry grid using CSS columns ----- */
.vpc-gallery-grid {
	columns: 3;
	column-gap: 16px;
}

.vpc-gallery-item {
	break-inside: avoid;
	margin-bottom: 16px;
	border-radius: var(--vpc-radius);
	overflow: hidden;
	background: var(--vpc-charcoal);
	border: 1px solid var(--vpc-line);
}

.vpc-gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 400ms var(--vpc-ease),
		opacity 300ms var(--vpc-ease);
}

.vpc-gallery-item:hover img {
	transform: scale(1.04);
	opacity: 0.92;
}

/* Tall items — naturally taller photos
   will flow to fill column height naturally
   in CSS columns masonry */
.vpc-gallery-item--tall img {
	aspect-ratio: 3 / 4;
	object-fit: cover;
	width: 100%;
}

.vpc-gallery-item--wide {
	/* In CSS columns, wide items still stay
	   within their column — use aspect ratio
	   to give them more visual weight */
}
.vpc-gallery-item--wide img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

/* ----- Footer CTA ----- */
.vpc-gallery-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(24px, 3vw, 34px);
	border-radius: var(--vpc-radius-lg);
	border: 1px solid var(--vpc-line);
	background: var(--vpc-charcoal);
}

.vpc-gallery-cta p {
	margin: 0;
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	max-width: 480px;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
	.vpc-gallery-grid {
		columns: 2;
	}
}

@media (max-width: 560px) {
	.vpc-gallery-grid {
		columns: 1;
	}
	.vpc-gallery-header { max-width: 100%; }
	.vpc-gallery-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	.vpc-gallery-cta .vpc-btn {
		width: 100%;
		text-align: center;
	}
}
/* =============================================================
   SERVICE AREAS SECTION
   ============================================================= */
.vpc-areas {
	background: var(--vpc-charcoal);
	color: var(--vpc-white);
	padding: clamp(72px, 8vw, 120px) 0;
	border-top: 1px solid var(--vpc-line);
	border-bottom: 1px solid var(--vpc-line);
}

.vpc-areas-inner {
	display: flex;
	flex-direction: column;
	gap: clamp(44px, 6vw, 60px);
}

/* ----- Header ----- */
.vpc-areas-header { max-width: 680px; }

.vpc-areas-eyebrow {
	color: var(--vpc-red);
	margin-bottom: 18px;
}

.vpc-areas-header h2 {
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.97;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0 0 18px;
}

.vpc-areas-lead {
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	line-height: 1.65;
	margin: 0;
}

/* ----- City grid ----- */
.vpc-areas-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

/* ----- City cards ----- */
.vpc-area-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	border-radius: var(--vpc-radius);
	background: var(--vpc-black);
	border: 1px solid var(--vpc-line);
	text-decoration: none;
	color: var(--vpc-white);
	transition: border-color 200ms var(--vpc-ease),
		background 200ms var(--vpc-ease),
		transform 200ms var(--vpc-ease);
}

.vpc-area-card:hover {
	border-color: var(--vpc-red);
	background: var(--vpc-charcoal-2);
	transform: translateY(-2px);
	color: var(--vpc-white);
}

/* Home base card gets a subtle red tint */
.vpc-area-card--home {
	border-color: rgba(224, 30, 43, 0.30);
}

.vpc-area-card--home:hover {
	border-color: var(--vpc-red);
}

.vpc-area-num {
	font-family: var(--vpc-font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--vpc-red);
	flex-shrink: 0;
	line-height: 1;
}

.vpc-area-card strong {
	font-family: var(--vpc-font-head);
	font-size: clamp(16px, 1.6vw, 20px);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--vpc-white);
	flex: 1;
	line-height: 1.1;
}

.vpc-area-card strong em {
	font-style: normal;
	font-size: 0.72em;
	color: var(--vpc-red);
	display: block;
	text-transform: none;
	letter-spacing: 0.02em;
	margin-top: 3px;
}

.vpc-area-arrow {
	font-size: 16px;
	color: var(--vpc-steel);
	flex-shrink: 0;
	transition: transform 200ms var(--vpc-ease), color 200ms var(--vpc-ease);
}

.vpc-area-card:hover .vpc-area-arrow {
	transform: translateX(4px);
	color: var(--vpc-red);
}

/* ----- Footer ----- */
.vpc-areas-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: clamp(24px, 3vw, 34px);
	border-radius: var(--vpc-radius-lg);
	border: 1px solid var(--vpc-line);
	background: var(--vpc-black);
}

.vpc-areas-footer p {
	margin: 0;
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
}

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

@media (max-width: 560px) {
	.vpc-areas-grid {
		grid-template-columns: 1fr;
	}
	.vpc-areas-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	.vpc-areas-footer .vpc-btn {
		width: 100%;
		text-align: center;
	}
}
/* =============================================================
   FAQ SECTION
   ============================================================= */
.vpc-faq {
	background: var(--vpc-black);
	color: var(--vpc-white);
	padding: clamp(72px, 8vw, 120px) 0;
	border-top: 1px solid var(--vpc-line);
}

.vpc-faq-inner {
	display: flex;
	flex-direction: column;
	gap: clamp(44px, 6vw, 60px);
}

/* ----- Header ----- */
.vpc-faq-header { max-width: 680px; }

.vpc-faq-eyebrow {
	color: var(--vpc-red);
	margin-bottom: 18px;
}

.vpc-faq-header h2 {
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.97;
	letter-spacing: 0.01em;
	color: var(--vpc-white);
	margin: 0 0 18px;
}

.vpc-faq-header p {
	font-size: var(--vpc-fs-lead);
	color: var(--vpc-steel-light);
	line-height: 1.6;
	margin: 0;
}

/* ----- 2-column grid ----- */
.vpc-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-items: start;
}

/* ----- FAQ items ----- */
.vpc-faq-item {
	border: 1px solid var(--vpc-line);
	border-radius: var(--vpc-radius);
	overflow: hidden;
	background: var(--vpc-charcoal);
	transition: border-color 220ms var(--vpc-ease);
}

.vpc-faq-item.is-open {
	border-color: rgba(224, 30, 43, 0.40);
}

.vpc-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-family: var(--vpc-font-head);
	font-size: clamp(15px, 1.4vw, 17px);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.3;
	color: var(--vpc-white);
	text-align: left;
	cursor: pointer;
	background: none;
	border: none;
	transition: color 200ms var(--vpc-ease);
}

.vpc-faq-question:hover { color: var(--vpc-red); }

.vpc-faq-question svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--vpc-red);
	transition: transform 300ms var(--vpc-ease);
}

.vpc-faq-item.is-open .vpc-faq-question {
	color: var(--vpc-red);
}

.vpc-faq-item.is-open .vpc-faq-question svg {
	transform: rotate(45deg);
}

.vpc-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 320ms var(--vpc-ease);
}

.vpc-faq-item.is-open .vpc-faq-answer {
	max-height: 400px;
}

.vpc-faq-answer p {
	padding: 0 24px 22px;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--vpc-steel-light);
}

.vpc-faq-answer p strong {
	color: var(--vpc-white);
	font-weight: 600;
}

/* ----- Responsive ----- */
@media (max-width: 760px) {
	.vpc-faq-grid {
		grid-template-columns: 1fr;
	}
	.vpc-faq-header { max-width: 100%; }
}