:root {
	--ink: #16151d;
	--ink-soft: #32313a;
	--muted: #686676;
	--line: #dedde6;
	--surface: #ffffff;
	--surface-soft: #f6f7fa;
	--surface-warm: #fbf5ef;
	--primary: #c03386;
	--primary-dark: #8f285f;
	--max-width: 1160px;
	--radius: 8px;
	--shadow: 0 18px 55px rgba(22, 21, 29, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
	color: var(--ink);
	background: var(--surface);
}

body.nav-open {
	overflow: hidden;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

button,
input,
textarea {
	font: inherit;
}

:focus-visible {
	outline: 3px solid rgba(192, 51, 134, 0.32);
	outline-offset: 3px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(222, 221, 230, 0.9);
	backdrop-filter: blur(18px);
}

.header-inner,
.section,
.hero-inner,
.values-inner,
.contact-inner,
.footer-inner {
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 78px;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex: 0 0 auto;
	width: 158px;
	height: 60px;
	overflow: hidden;
	text-decoration: none;
	line-height: 0;
}

.brand-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 170px;
	height: 170px;
	max-width: none;
	object-fit: contain;
	transform: translate(-50%, -50%);
}

.eyebrow,
h1,
h2,
h3,
p {
	margin: 0;
	letter-spacing: 0;
}

.eyebrow {
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--primary);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav-intro {
	display: none;
}

.site-nav-links {
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-nav a {
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--muted);
	transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
	color: var(--primary-dark);
}

.site-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border: 1px solid rgba(192, 51, 134, 0.26);
	border-radius: var(--radius);
	color: var(--primary-dark) !important;
	background: rgba(192, 51, 134, 0.08);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--ink);
	transition: transform 180ms ease;
}

.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: calc(100svh - 78px);
	overflow: hidden;
	color: #fff;
	background: #08050d;
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background:
		linear-gradient(90deg, rgba(8, 5, 13, 0.98) 0%, rgba(8, 5, 13, 0.72) 46%, rgba(8, 5, 13, 0.2) 100%),
		linear-gradient(145deg, rgba(192, 51, 134, 0.16) 0%, transparent 34%, rgba(8, 119, 123, 0.18) 100%);
	pointer-events: none;
}

.hero-brand-bg {
	position: absolute;
	inset: -14% -12% -18% -12%;
	z-index: 0;
	transform: translate3d(0, var(--hero-parallax, 0px), 0) rotate(var(--hero-rotate, 0deg)) scale(var(--hero-scale, 1));
	transform-origin: center;
	will-change: transform;
	pointer-events: none;
}

.hero-brand-bg::before {
	position: absolute;
	inset: 3% 30% 20% -16%;
	content: "";
	background: url("../img/logo-vf-symbol.png") center / contain no-repeat;
	opacity: 0.88;
	filter: saturate(1.12) contrast(1.04);
	transform: translate3d(calc(var(--hero-symbol-shift, 0px) * -0.55), 0, 0);
	transform-origin: center;
	will-change: transform;
}

.hero-brand-bg::after {
	position: absolute;
	inset: 18% -8% 24% 56%;
	content: "";
	background: url("../img/logo-vf-symbol.png") center / contain no-repeat;
	opacity: 0.42;
	filter: drop-shadow(0 26px 70px rgba(192, 51, 134, 0.32));
	mix-blend-mode: screen;
	transform: translate3d(var(--hero-symbol-shift, 0px), calc(var(--hero-parallax, 0px) * -0.28), 0) rotate(var(--hero-rotate-inverse, 0deg)) scale(var(--hero-secondary-scale, 1));
	transform-origin: center;
	will-change: transform;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
	gap: 56px;
	align-items: center;
	padding: 46px 0 74px;
}

.hero-copy {
	max-width: 720px;
}

.hero .eyebrow {
	color: #ff77bc;
}

.hero h1 {
	margin-top: 16px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 5rem;
	font-weight: 700;
	line-height: 0.98;
}

.hero-lead {
	max-width: 650px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.2rem;
	line-height: 1.7;
}

.hero-actions,
.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	text-decoration: none;
	font-size: 0.96rem;
	font-weight: 800;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--primary);
	color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
	background: #d24398;
}

.button-secondary {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: rgba(255, 255, 255, 0.18);
}

.hero-proof {
	display: grid;
	gap: 1px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	overflow: hidden;
}

.hero-proof div {
	padding: 18px 0;
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div:first-child {
	border-top: 0;
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	font-size: 1rem;
	color: #fff;
}

.hero-proof span {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
	line-height: 1.45;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 2;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.hero-scroll::after {
	content: "↓";
	display: inline-block;
	margin-left: 8px;
}

.section {
	padding: 96px 0;
}

.section-heading {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	margin-bottom: 36px;
}

.section-heading h2,
.values-inner h2,
.contact-inner h2 {
	max-width: 850px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.35rem;
	line-height: 1.08;
}

.intro-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 44px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.intro-grid p,
.service-card p,
.method-card p,
.values-list p,
.clients-carousel-head p,
.contact-inner p {
	color: var(--muted);
	line-height: 1.75;
}

.services {
	width: 100%;
	padding: 112px 0 118px;
	background: var(--surface-soft);
}

.services > .section-heading,
.services > .services-grid {
	width: min(var(--max-width), calc(100% - 40px));
	margin-left: auto;
	margin-right: auto;
}

.services .section-heading {
	margin-bottom: 52px;
}

.services .section-heading h2 {
	max-width: 780px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	align-items: stretch;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 330px;
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: 0 12px 32px rgba(22, 21, 29, 0.05);
	overflow: hidden;
}

.service-card::before {
	position: absolute;
	top: 0;
	left: 36px;
	right: 36px;
	height: 4px;
	content: "";
	background: var(--primary);
}

.service-card:nth-child(2)::before {
	background: #ad2f80;
}

.service-card:nth-child(3)::before {
	background: #7b2f73;
}

.service-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 52px;
	border-radius: var(--radius);
	background: #f7e6f0;
	color: var(--primary-dark);
	font-weight: 900;
}

.service-card:nth-child(2) .service-index {
	background: #f6e3ef;
	color: #84245f;
}

.service-card:nth-child(3) .service-index {
	background: #f0e4f1;
	color: #64305f;
}

.service-card h3,
.method-card h3,
.client-card h3 {
	font-size: 1.36rem;
	line-height: 1.25;
}

.service-card p,
.method-card p {
	margin-top: 14px;
}

.service-card p {
	margin-top: 18px;
	line-height: 1.82;
}

.method-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--line);
	overflow: hidden;
}

.method-card {
	min-height: 238px;
	padding: 26px;
	background: var(--surface);
}

.method-card span {
	display: inline-block;
	margin-bottom: 42px;
	color: var(--primary-dark);
	font-size: 0.92rem;
	font-weight: 900;
}

.values-band {
	padding: 86px 0;
	background: #11151a;
	color: #fff;
}

.values-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
	gap: 48px;
	align-items: start;
}

.values-inner .eyebrow {
	color: #6fd3d4;
}

.values-list {
	display: grid;
	gap: 20px;
}

.values-list p {
	color: rgba(255, 255, 255, 0.72);
}

.values-list strong {
	color: #fff;
}

.clients-carousel {
	display: grid;
	gap: 20px;
}

.clients-carousel-head {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.clients-carousel-controls {
	display: flex;
	gap: 8px;
}

.carousel-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--ink);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
	border-color: rgba(192, 51, 134, 0.32);
	background: #f7e6f0;
	color: var(--primary-dark);
}

.clients-viewport {
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}

.clients-viewport.is-dragging {
	cursor: grabbing;
}

.clients-track {
	display: flex;
	gap: 18px;
	transition: transform 320ms ease;
	will-change: transform;
}

.client-card {
	display: grid;
	grid-template-rows: 154px 1fr;
	flex: 0 0 calc((100% - 36px) / 3);
	gap: 20px;
	align-content: stretch;
	min-height: 230px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: 0 10px 26px rgba(22, 21, 29, 0.06);
}

.client-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 154px;
	padding: 18px;
	border: 1px solid #eeeef3;
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.client-logo {
	width: 220px;
	height: 92px;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.client-logo-wide {
	width: 235px;
}

.client-logo-square {
	width: 116px;
	height: 116px;
}

.client-card h3 {
	align-self: end;
	min-height: 2.5em;
	color: var(--ink-soft);
}

.clients-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.carousel-dot {
	width: 26px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #d8d7e2;
	cursor: pointer;
	transition: width 160ms ease, background 160ms ease;
}

.carousel-dot.is-active {
	width: 38px;
	background: var(--primary);
}

.contact-band {
	padding: 96px 0;
	background:
		linear-gradient(90deg, rgba(251, 245, 239, 0.96), rgba(246, 247, 250, 0.96)),
		url("../img/logo-vf-cover.png") center right / cover no-repeat;
}

.contact-inner {
	display: grid;
	gap: 20px;
}

.contact-inner p {
	max-width: 700px;
	font-size: 1.08rem;
}

.section-heading .eyebrow,
.values-inner .eyebrow,
.contact-inner .eyebrow {
	font-size: 1.08rem;
	line-height: 1.2;
}

.contact-band .button-secondary {
	border-color: var(--line);
	background: var(--surface);
	color: var(--ink);
}

.site-footer {
	padding: 28px 0;
	border-top: 1px solid var(--line);
	background: var(--surface);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	color: var(--muted);
	font-size: 0.95rem;
}

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	opacity: 0;
	box-shadow: 0 16px 36px rgba(7, 94, 84, 0.28);
	pointer-events: none;
	text-decoration: none;
	transform: translateY(14px) scale(0.92);
	transition: opacity 180ms ease, transform 180ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
	transform: translateY(-2px) scale(1);
	background: #20bd5a;
	box-shadow: 0 20px 44px rgba(7, 94, 84, 0.36);
}

.whatsapp-float svg {
	width: 31px;
	height: 31px;
	fill: currentColor;
}

.whatsapp-float svg path:first-child {
	fill: none;
	stroke: currentColor;
	stroke-linejoin: round;
	stroke-width: 2.2;
}

.reveal {
	opacity: 1;
	transform: none;
}

.js-ready .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.js-ready .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1060px) {
	.hero-inner,
	.section-heading,
	.intro-grid,
	.services-grid,
	.method-grid,
	.values-inner {
		grid-template-columns: 1fr;
	}

	.hero-inner {
		gap: 34px;
		padding-top: 68px;
	}

	.hero h1 {
		font-size: 4rem;
	}

	.section-heading h2,
	.values-inner h2,
	.contact-inner h2 {
		font-size: 2.75rem;
	}

	.method-grid {
		border: 0;
		background: transparent;
		gap: 14px;
	}

	.services-grid {
		gap: 20px;
	}

	.service-card {
		min-height: 260px;
	}

	.service-index {
		margin-bottom: 34px;
	}

	.method-card {
		border: 1px solid var(--line);
		border-radius: var(--radius);
	}

	.client-card {
		flex-basis: calc((100% - 18px) / 2);
	}
}

@media (max-width: 760px) {
	.header-inner,
	.section,
	.hero-inner,
	.values-inner,
	.contact-inner,
	.footer-inner {
		width: min(var(--max-width), calc(100% - 28px));
	}

	.header-inner {
		min-height: 68px;
	}

	.brand-mark {
		width: 142px;
		height: 142px;
	}

	.brand-lockup {
		width: 128px;
		height: 52px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle[aria-expanded="true"] span:first-child {
		transform: translateY(3.5px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] span:last-child {
		transform: translateY(-3.5px) rotate(-45deg);
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 8px);
		left: 14px;
		right: 14px;
		display: grid;
		gap: 14px;
		padding: 16px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: #fff;
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav-intro {
		display: block;
		padding-bottom: 12px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav-title {
		color: var(--ink);
		font-family: Georgia, "Times New Roman", serif;
		font-size: 1.25rem;
		font-weight: 700;
		line-height: 1.1;
	}

	.site-nav-subtitle {
		margin-top: 6px;
		color: var(--muted);
		font-size: 0.92rem;
		line-height: 1.45;
	}

	.site-nav-links {
		display: grid;
		gap: 6px;
	}

	.site-nav a,
	.site-nav-cta {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 44px;
		padding: 0 12px;
		border-radius: var(--radius);
		background: var(--surface-soft);
		color: var(--ink);
	}

	.site-nav a::after {
		content: "›";
		color: var(--primary-dark);
		font-size: 1.1rem;
	}

	.site-nav .site-nav-cta {
		border: 0;
		background: var(--primary);
		color: #fff !important;
	}

	.site-nav .site-nav-cta::after {
		color: #fff !important;
	}

	.hero {
		min-height: calc(100svh - 68px);
	}

	.hero::before {
		background:
			linear-gradient(180deg, rgba(7, 5, 10, 0.9) 0%, rgba(7, 5, 10, 0.76) 100%);
	}

	.hero-brand-bg {
		inset: -10% -34% -12% -34%;
		transform: translate3d(0, calc(var(--hero-parallax, 0px) * 0.55), 0) rotate(var(--hero-rotate, 0deg)) scale(var(--hero-scale, 1));
	}

	.hero-brand-bg::before {
		inset: 0 -2% 40% -20%;
	}

	.hero-brand-bg::after {
		inset: 44% -18% 8% 36%;
		opacity: 0.34;
	}

	.hero-inner {
		padding: 42px 0 72px;
	}

	.hero h1 {
		font-size: 3.2rem;
	}

	.hero-lead {
		font-size: 1.05rem;
	}

	.hero-proof {
		display: none;
	}

	.hero-scroll {
		width: calc(100% - 28px);
		text-align: center;
	}

	.section,
	.values-band,
	.contact-band {
		padding: 72px 0;
	}

	.services {
		width: 100%;
	}

	.services > .section-heading,
	.services > .services-grid {
		width: min(var(--max-width), calc(100% - 28px));
	}

	.section-heading {
		gap: 14px;
		margin-bottom: 28px;
	}

	.section-heading h2,
	.values-inner h2,
	.contact-inner h2 {
		font-size: 2.25rem;
	}

	.intro-grid {
		gap: 20px;
	}

	.service-card,
	.method-card {
		min-height: auto;
		padding: 22px;
	}

	.service-card::before {
		left: 22px;
		right: 22px;
	}

	.method-card span,
	.service-index {
		margin-bottom: 22px;
	}

	.clients-carousel-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.client-card {
		flex-basis: 100%;
		grid-template-rows: 148px auto;
		min-height: 220px;
	}

	.client-logo-wrap {
		height: 148px;
	}

	.client-card h3 {
		min-height: auto;
	}

	.contact-actions,
	.hero-actions {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.footer-inner {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 54px;
		height: 54px;
	}
}

@media (max-width: 420px) {
	.hero h1 {
		font-size: 2.7rem;
	}

	.section-heading h2,
	.values-inner h2,
	.contact-inner h2 {
		font-size: 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.js-ready .reveal,
	.button,
	.whatsapp-float,
	.site-nav,
	.site-nav a,
	.clients-track,
	.carousel-dot,
	.carousel-control,
	.nav-toggle span,
	.service-card {
		transition: none;
	}

	.js-ready .reveal {
		opacity: 1;
		transform: none;
	}

	.hero-brand-bg {
		transform: none;
	}

	.hero-brand-bg::before {
		transform: none;
	}

	.hero-brand-bg::after {
		transform: none;
	}
}
