/* -------------------------------------------------------------------
   Scroll reveal — sections fade + slide up into view once, on scroll.
   Respects reduced-motion preference.
   ------------------------------------------------------------------- */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.reveal-on-scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* -------------------------------------------------------------------
   Hover lift — service tiles and portfolio cover cards
   ------------------------------------------------------------------- */
.wp-block-cover,
.venturepath-service-tile {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wp-block-cover:hover,
.venturepath-service-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(22, 22, 22, 0.18);
}

/* Buttons get a slight lift too, on top of the color change from theme.json */
.wp-block-button__link {
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.wp-block-button__link:hover {
	transform: translateY(-2px);
}
.wp-block-button.is-style-outline .wp-block-button__link {
	background: var(--wp--preset--color--paper-2);
	color: var(--wp--preset--color--charcoal);
	border: 1.5px solid var(--wp--preset--color--concrete);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--charcoal);
	background: var(--wp--preset--color--paper-2);
	color: var(--wp--preset--color--charcoal);
}
.has-safety-gradient-background {
	box-shadow: 0 10px 24px rgba(217, 84, 31, 0.32);
}
.has-safety-gradient-background:hover {
	box-shadow: 0 16px 32px rgba(217, 84, 31, 0.4);
}

/* -------------------------------------------------------------------
   Stats counter layout
   ------------------------------------------------------------------- */
.venturepath-stat {
	min-width: 140px;
	text-align: left;
}
.venturepath-stat__number {
	margin-bottom: 0.25rem !important;
}

/* -------------------------------------------------------------------
   Quote request form
   ------------------------------------------------------------------- */
.venturepath-quote-form {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	background: var(--wp--preset--color--paper-2);
	padding: 2.2rem;
	border-radius: 18px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.venturepath-form-row label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--wp--preset--color--charcoal);
}
.venturepath-form-row input[type="text"],
.venturepath-form-row input[type="email"],
.venturepath-form-row input[type="tel"],
.venturepath-form-row select,
.venturepath-form-row textarea {
	width: 100%;
	padding: 0.65rem 0.8rem;
	border: 1px solid #c9c6be;
	border-radius: 4px;
	font-family: inherit;
	font-size: 0.95rem;
	background: var(--wp--preset--color--paper);
	box-sizing: border-box;
}
.venturepath-form-row input:focus,
.venturepath-form-row select:focus,
.venturepath-form-row textarea:focus {
	outline: 2px solid var(--wp--preset--color--blueprint);
	outline-offset: 1px;
}
.venturepath-form-row--split {
	display: flex;
	gap: 1rem;
}
.venturepath-form-row--split > div {
	flex: 1;
}
.venturepath-form-radios {
	display: flex;
	gap: 1.5rem;
}
.venturepath-form-radios label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 400;
}
.venturepath-form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.venturepath-form-submit {
	align-self: stretch;
	background: linear-gradient(100deg, var(--wp--preset--color--safety), var(--wp--preset--color--safety-light));
	color: var(--wp--preset--color--paper);
	border: none;
	border-radius: 8px;
	padding: 0.9rem 2rem;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.venturepath-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(217, 84, 31, 0.35);
}
.venturepath-form-notice {
	padding: 1rem 1.25rem;
	border-radius: 6px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}
.venturepath-form-notice--success {
	background: #e3f3ee;
	color: #0d6b52;
	border: 1px solid #b9e0d3;
}
.venturepath-form-notice--error {
	background: #fbe9e5;
	color: #a3341c;
	border: 1px solid #f0c4b8;
}

@media (max-width: 600px) {
	.venturepath-form-row--split {
		flex-direction: column;
	}
}

/* -------------------------------------------------------------------
   Hero: floating stat card over the image
   ------------------------------------------------------------------- */
.venturepath-hero-media {
	position: relative;
}
.venturepath-hero-media img {
	display: block;
	width: 100%;
	height: auto;
}
.venturepath-floating-card {
	position: absolute;
	left: -1.5rem;
	bottom: -1.5rem;
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	max-width: 220px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
@media (max-width: 782px) {
	.venturepath-floating-card {
		left: 1rem;
		bottom: 1rem;
	}
}

/* -------------------------------------------------------------------
   Trust ticker: continuous horizontal scroll of credential badges
   ------------------------------------------------------------------- */
.venturepath-ticker-wrap {
	overflow: hidden;
	padding: 0.85rem 0;
}
.venturepath-ticker__track {
	display: flex;
	gap: 0.75rem;
	white-space: nowrap;
	width: max-content;
	animation: venturepath-scroll 22s linear infinite;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.venturepath-ticker-wrap:hover .venturepath-ticker__track {
	animation-play-state: paused;
}
@keyframes venturepath-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.venturepath-ticker__track {
		animation: none;
		flex-wrap: wrap;
	}
}

/* -------------------------------------------------------------------
   Process timeline
   ------------------------------------------------------------------- */
.venturepath-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
}
.venturepath-timeline::before {
	content: "";
	position: absolute;
	top: 1.1rem;
	left: 5%;
	right: 5%;
	height: 2px;
	background: repeating-linear-gradient(to right, #c9c6be 0, #c9c6be 6px, transparent 6px, transparent 12px);
	z-index: 0;
}
.venturepath-timeline__step {
	position: relative;
	z-index: 1;
}
.venturepath-timeline__number {
	font-size: 1.4rem !important;
	font-weight: 700;
	background: var(--wp--preset--color--paper);
	display: inline-block;
	padding-right: 0.5rem;
}
@media (max-width: 782px) {
	.venturepath-timeline {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.venturepath-timeline::before {
		display: none;
	}
}

/* -------------------------------------------------------------------
   Testimonials: native scroll-snap carousel, no JS library required
   ------------------------------------------------------------------- */
.venturepath-testimonials__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
}
.venturepath-testimonials__track::-webkit-scrollbar {
	height: 6px;
}
.venturepath-testimonials__track::-webkit-scrollbar-thumb {
	background: #c9c6be;
	border-radius: 3px;
}
.venturepath-testimonial-card {
	scroll-snap-align: start;
	flex: 0 0 min(360px, 85vw);
	background: var(--wp--preset--color--paper);
	border-radius: 8px;
	padding: 1.75rem;
	box-shadow: 0 4px 14px rgba(22, 22, 22, 0.08);
}
.venturepath-testimonial-card__quote {
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--wp--preset--color--charcoal);
	margin-bottom: 1rem;
}
.venturepath-testimonial-card__name {
	font-weight: 700;
	margin-bottom: 0.15rem;
	color: var(--wp--preset--color--charcoal);
}
.venturepath-testimonial-card__meta {
	font-size: 0.8rem;
	color: var(--wp--preset--color--steel);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* =====================================================================
   PREVIEW UPGRADE — sticky header, hero collage, blobs, watermark,
   gradient text, refined ticker/icons, and testimonial carousel.
   ===================================================================== */

/* Sticky, blurred header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 249, 246, 0.82) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--wp--preset--color--concrete);
}

/* Decorative blurred blobs behind the hero (purely visual, aria-hidden) */
.venturepath-hero-section {
	position: relative;
	overflow: hidden;
}
.venturepath-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
	z-index: 0;
}
.venturepath-blob--1 {
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, #0063c7, transparent 70%);
	top: -180px;
	right: -120px;
	opacity: 0.3;
}
.venturepath-blob--2 {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, #0053a8, transparent 70%);
	bottom: -160px;
	left: -140px;
	opacity: 0.16;
}
.venturepath-hero-section > .wp-block-columns {
	position: relative;
	z-index: 2;
}

/* Gradient text highlight (hero <mark>, stat numbers) */
.venturepath-gradient-text {
	background: linear-gradient(100deg, #003b82, #0063c7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Hero image collage: large photo + smaller overlapping photo + floating card */
.venturepath-hero-media {
	position: relative;
	min-height: 460px;
}
.venturepath-hero-media .venturepath-media-main {
	position: absolute;
	top: 0;
	right: 0;
	width: 82%;
}
.venturepath-hero-media .venturepath-media-main img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 30px 60px rgba(22, 22, 22, 0.18);
	transition: transform 8s ease;
}
.venturepath-hero-media:hover .venturepath-media-main img {
	transform: scale(1.08);
}
.venturepath-hero-media .venturepath-media-sub {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 46%;
	z-index: 2;
}
.venturepath-hero-media .venturepath-media-sub img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 16px;
	border: 5px solid var(--wp--preset--color--paper);
	box-shadow: 0 20px 40px rgba(22, 22, 22, 0.22);
}
.venturepath-floating-card {
	position: absolute;
	top: 24px;
	left: -20px;
	z-index: 3;
	max-width: 210px;
	padding: 1.1rem 1.4rem;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(22, 22, 22, 0.16);
	animation: venturepath-float 5s ease-in-out infinite;
}
@keyframes venturepath-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
	.venturepath-floating-card { animation: none; }
}
@media (max-width: 782px) {
	.venturepath-hero-media { min-height: 340px; }
	.venturepath-floating-card { left: 0.5rem; top: 0.5rem; max-width: 170px; }
}

/* Trust ticker: checkmark icons */
.venturepath-ticker__track span::before {
	content: "✓";
	color: var(--wp--preset--color--safety-light);
	font-weight: 700;
	margin-right: 0.4rem;
}

/* Services: icon squares */
.venturepath-service-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(217, 84, 31, 0.14), rgba(217, 84, 31, 0.04));
	color: var(--wp--preset--color--safety);
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}
.venturepath-service-tile {
	background: var(--wp--preset--color--paper-2);
	border: 1px solid var(--wp--preset--color--concrete);
	border-radius: 16px;
}
.venturepath-tag-pill {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--wp--preset--color--blueprint);
	background: rgba(30, 95, 140, 0.08);
	padding: 0.3rem 0.7rem;
	border-radius: 100px;
}

/* Portfolio hover: slight scale + rotate */
.wp-block-cover img {
	transition: transform 0.5s ease;
}
.wp-block-cover:hover img {
	transform: scale(1.08) rotate(0.4deg);
}

/* Giant faint watermark text (used behind the stats section) */
.venturepath-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	font-size: clamp(4rem, 14vw, 16rem);
	color: rgba(255, 255, 255, 0.035);
	white-space: nowrap;
	z-index: 0;
	pointer-events: none;
	letter-spacing: -0.05em;
}

/* -------------------------------------------------------------------
   Testimonial carousel: JS-driven slides with arrows + dots
   ------------------------------------------------------------------- */
.venturepath-carousel {
	max-width: 780px;
	margin: 0 auto;
}
.venturepath-carousel__viewport {
	overflow: hidden;
	border-radius: 18px;
}
.venturepath-carousel__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.venturepath-carousel__slide {
	min-width: 100%;
	padding: 4px;
	box-sizing: border-box;
}
.venturepath-carousel .venturepath-testimonial-card {
	background: var(--wp--preset--color--paper-2);
	border: 1px solid var(--wp--preset--color--concrete);
	border-radius: 16px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: none;
}
.venturepath-carousel .venturepath-testimonial-card__quote {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.4rem;
}
.venturepath-stars {
	color: var(--wp--preset--color--safety);
	font-size: 0.95rem;
	letter-spacing: 3px;
	margin-bottom: 1rem;
}
.venturepath-carousel__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 1.6rem;
}
.venturepath-carousel__arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid var(--wp--preset--color--concrete);
	background: var(--wp--preset--color--paper-2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.1rem;
	color: var(--wp--preset--color--charcoal);
	transition: all 0.2s ease;
}
.venturepath-carousel__arrow:hover {
	background: var(--wp--preset--color--charcoal);
	color: var(--wp--preset--color--paper);
	border-color: var(--wp--preset--color--charcoal);
}
.venturepath-carousel__dots {
	display: flex;
	gap: 0.5rem;
}
.venturepath-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wp--preset--color--concrete);
	cursor: pointer;
	transition: all 0.25s ease;
	border: none;
	padding: 0;
}
.venturepath-carousel__dot.is-active {
	background: var(--wp--preset--color--safety);
	width: 22px;
	border-radius: 4px;
}
