/* Homepage sections, reproducing the velta.sg stage design language. */

.vs, .vs * { box-sizing: border-box; }

/* Shared container = stageContainer (max 1480, responsive padding) */
.vs-in {
	margin: 0 auto;
	width: 100%;
	max-width: 1480px;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 1024px) {
	.vs-in { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 1280px) {
	.vs-in { padding-left: 48px; padding-right: 48px; }
}

.vs { padding: 80px 0; }

@media (min-width: 1024px) {
	.vs { padding: 112px 0; }
}

/* Eyebrow label */
.vs-eye {
	margin: 0;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

/* Section heading: eyebrow left column, big light title right */
.vs-sh {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.vs-sh h2 {
	margin: 0;
	max-width: 56rem;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 2.15rem;
	font-weight: 300;
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: inherit;
}

.vs-sh .vs-body {
	margin: 24px 0 0;
	max-width: 42rem;
	font-size: 16px;
	line-height: 1.75;
}

@media (min-width: 1024px) {
	.vs-sh { grid-template-columns: repeat(12, 1fr); }
	.vs-sh .vs-eye { grid-column: span 3; }
	.vs-sh .vs-shr { grid-column: 5 / span 8; }
	.vs-sh h2 { font-size: 3rem; }
	.vs-sh .vs-body { font-size: 18px; }
}

@media (min-width: 1280px) {
	.vs-sh h2 { font-size: 3.75rem; }
}

/* Stage button (dark + light variants) */
.vs-btn {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	border: 1px solid #161817;
	background: #161817;
	color: #fff;
	padding: 12px 20px;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.vs-btn:hover {
	background: #0d1793;
	border-color: #0d1793;
	color: #fff;
}

.vs-btn.light {
	border-color: #fff;
	background: #fff;
	color: #161817;
}

.vs-btn.light:hover {
	background: transparent;
	color: #fff;
}

.vs-btn .arr { font-size: 15px; line-height: 1; }

/* Text link with underline */
.vs-tlink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid currentColor;
	padding-bottom: 4px;
	font-size: 14px;
	color: #111;
	text-decoration: none;
	transition: color 0.15s;
}

.vs-tlink:hover { color: #0d1793; }

.vs-dark .vs-tlink { color: #fff; }
.vs-dark .vs-tlink:hover { color: rgba(255, 255, 255, 0.7); }

/* ---------- Hero ---------- */

.vhero {
	background: #eeeae1;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.vhero .vs-in {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-top: 64px;
	padding-bottom: 0;
}

.vhero-copy { max-width: 640px; }

.vhero-copy .vs-eye { color: #5f6663; }

.vhero h1 {
	margin: 24px 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: #111513;
}

.vhero h1 .blue { color: #1426b5; }

.vhero-sub {
	margin: 28px 0 0;
	max-width: 34rem;
	font-size: 17px;
	line-height: 1.7;
	color: #555b57;
}

.vhero-stats {
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.vhero-stats li {
	border-top: 1px solid rgba(22, 24, 23, 0.25);
	padding-top: 12px;
	font-size: 13px;
	line-height: 1.5;
	color: #454a47;
}

.vhero-actions {
	margin: 40px 0 56px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
}

.vhero-fig {
	margin: 0;
	position: relative;
	min-height: 340px;
}

.vhero-fig img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

@media (min-width: 1024px) {
	.vhero .vs-in {
		grid-template-columns: repeat(12, 1fr);
		gap: 48px;
		padding-top: 96px;
		min-height: 640px;
	}
	.vhero-copy { grid-column: span 6; align-self: center; padding-bottom: 96px; }
	.vhero-fig { grid-column: span 6; min-height: 100%; }
}

/* ---------- Dark sections ---------- */

.vs-dark { color: #fff; }
.vs-dark .vs-eye { color: rgba(255, 255, 255, 0.65); }
.vs-dark .vs-body { color: rgba(255, 255, 255, 0.7); }

.vs-dark1 { background: #111513; }
.vs-dark2 { background: #171918; }

/* Benefit cards grid */
.vs-bens {
	margin-top: 64px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.vs-ben {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
}

.vs-ben .num {
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.1;
}

.vs-ben h3 {
	margin: 12px 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: inherit;
}

.vs-ben p {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 512px) {
	.vs-bens { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.vs-bens { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

/* Numbered feature rows (01–04) */
.vs-steps {
	margin-top: 72px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.vs-step {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding: 28px 0;
}

.vs-step .no {
	font-size: 12px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.55);
}

.vs-step .lbl {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 4px;
}

.vs-step h3 {
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.6rem;
	font-weight: 300;
	color: inherit;
}

.vs-step p {
	margin: 8px 0 0;
	max-width: 36rem;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 1024px) {
	.vs-step { grid-template-columns: repeat(12, 1fr); }
	.vs-step .no-wrap { grid-column: span 3; }
	.vs-step .body-wrap { grid-column: 5 / span 8; }
}

/* Three columns (RO performance) */
.vs-cols3 {
	margin-top: 64px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 1024px) {
	.vs-cols3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.vs-foot { margin-top: 64px; }

.vs-foot p {
	margin: 0 0 20px;
	max-width: 40rem;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
}

/* ---------- Sparkling (white + blue band) ---------- */

.vs-white { background: #fff; }

.vs-blue { background: #e8f0f7; padding: 64px 0 80px; }

.vs-modes {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.vs-mode {
	border: 1px solid rgba(22, 24, 23, 0.2);
	background: rgba(255, 255, 255, 0.6);
	padding: 20px;
}

.vs-mode .no {
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #5f6663;
}

.vs-mode .m {
	margin: 8px 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.4rem;
	font-weight: 400;
}

@media (min-width: 1024px) {
	.vs-modes { grid-template-columns: repeat(4, 1fr); }
}

.vs-blue .vs-cols3 .vs-ben { border-top-color: rgba(22, 24, 23, 0.2); }
.vs-blue .vs-ben h3 { color: #161817; }
.vs-blue .vs-ben p { color: #555b57; }

/* ---------- Category grid ---------- */

.vs-cats-wrap { background: #efede7; }

.vs-cats {
	margin-top: 64px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 512px) {
	.vs-cats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (min-width: 1280px) {
	.vs-cats { grid-template-columns: repeat(4, 1fr); }
}

.vs-cat {
	display: block;
	border-top: 1px solid #aeb3af;
	padding-top: 16px;
	color: inherit;
	text-decoration: none;
}

.vs-cat figure {
	margin: 0;
	position: relative;
	aspect-ratio: 4 / 4.6;
	overflow: hidden;
	background: #ddd8ce;
}

.vs-cat img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

a.vs-cat:hover img { transform: scale(1.035); }

.vs-cat .chip {
	position: absolute;
	left: 16px;
	top: 16px;
	border: 1px solid rgba(22, 24, 23, 0.3);
	background: rgba(255, 255, 255, 0.8);
	padding: 8px 12px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	backdrop-filter: blur(4px);
}

.vs-cat .meta { padding: 20px 0; }

.vs-cat .fam {
	margin: 0;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #626865;
}

.vs-cat h3 {
	margin: 8px 0 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.vs-cat .promise {
	margin: 8px 0 0;
	max-width: 28rem;
	font-size: 14px;
	line-height: 1.6;
	color: #5d625f;
}

/* ---------- Experience Centre ---------- */

.vs-exp {
	background: #ebe8e0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 0;
}

.vs-exp .vs-in {
	display: grid;
	grid-template-columns: 1fr;
}

.vs-exp-copy { padding: 56px 0; }

.vs-exp-copy .vs-eye { color: #626864; }

.vs-exp-copy h2 {
	margin: 32px 0 0;
	max-width: 56rem;
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	font-weight: 300;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.vs-exp-copy p {
	margin: 32px 0 0;
	max-width: 34rem;
	font-size: 17px;
	line-height: 1.75;
	color: #555b57;
}

.vs-exp-copy .vs-btn { margin-top: 40px; }

.vs-exp-fig {
	margin: 0;
	position: relative;
	min-height: 420px;
	background: #d9d8d2;
}

.vs-exp-fig img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vs-exp-fig figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	background: rgba(246, 244, 238, 0.9);
	padding: 16px 20px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	backdrop-filter: blur(4px);
}

@media (min-width: 1024px) {
	.vs-exp .vs-in { grid-template-columns: repeat(12, 1fr); gap: 48px; min-height: 620px; }
	.vs-exp-copy { grid-column: span 6; align-self: center; padding: 96px 0; }
	.vs-exp-fig { grid-column: span 6; min-height: 100%; }
}

/* ---------- Booking form ---------- */

.vb-form {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 34rem;
}

.vb-form .row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.vb-form label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #5f6663;
	margin-bottom: 6px;
}

.vb-form input,
.vb-form select,
.vb-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(22, 24, 23, 0.35);
	background: rgba(255, 255, 255, 0.6);
	border-radius: 0;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 15px;
	color: #161817;
}

.vb-form input:focus,
.vb-form select:focus,
.vb-form textarea:focus {
	outline: 2px solid #1426b5;
	outline-offset: 0;
	border-color: #1426b5;
}

.vb-form button {
	justify-content: space-between;
	display: inline-flex;
	align-items: center;
	gap: 32px;
	min-height: 48px;
	border: 1px solid #161817;
	background: #161817;
	color: #fff;
	padding: 12px 20px;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.vb-form button:hover {
	background: #0d1793;
	border-color: #0d1793;
}

.vb-form button[disabled] {
	opacity: 0.55;
	cursor: default;
}

.vb-msg {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.6;
}

.vb-msg.ok { color: #14722f; }
.vb-msg.err { color: #b3261e; }

/* Hide the honeypot field from humans */
.vb-hp { position: absolute; left: -9999px; }

/* ---------- Navy CTA ---------- */

.vs-cta { background: #101a86; color: #fff; }

.vs-cta .vs-in {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.vs-cta h2 {
	margin: 20px 0 0;
	max-width: 56rem;
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(2.2rem, 5vw, 3.75rem);
	font-weight: 300;
	line-height: 1.03;
	letter-spacing: -0.025em;
	color: inherit;
}

.vs-cta p.sub {
	margin: 24px 0 0;
	max-width: 42rem;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
	.vs-cta .vs-in { grid-template-columns: repeat(12, 1fr); align-items: end; }
	.vs-cta-copy { grid-column: span 8; }
	.vs-cta-act { grid-column: span 4; display: flex; justify-content: flex-end; }
}
