img.fs-service__light {
	width: 30px !important;
}

.fs-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: linear-gradient(to top right, #212121 0%, #252525 100%);
	color: #fff;
}

.fs-hero *,
.fs-hero *::before,
.fs-hero *::after {
	box-sizing: border-box;
}

.fs-hero img {
	display: block;
	max-width: none;
	height: auto;
}

/* Main layout */
.fs-hero__inner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: grid;
	grid-template-columns: 26% 58% 16%;
	align-items: center;
	padding: 60px 75px;
}

/* Left area */
.fs-hero__left {
	position: relative;
	z-index: 5;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10px;
}

.fs-logo {
	margin-bottom: 44px;
}

.fs-logo__main {
	font-size: clamp(38px, 3vw, 62px);
	line-height: 0.9;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
}

.fs-logo__sub {
	margin-top: 10px;
	font-size: clamp(18px, 1.2vw, 25px);
	line-height: 1;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.78);
}

.fs-intro {
	width: min(100%, 350px);
	margin: 0 0 90px;
	font-size: 15px;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.58);
}

/* Typography */
.fs-logo__sub,
.fs-intro,
.fs-service__label--bottom {
	font-family: inherit;
}

/* These labels follow the uploaded Logo text font.
   If no Logo font is uploaded, they use the site/theme font. */
.fs-logo__main,
.fs-fader__label,
.fs-service__label--top,
.fs-nav-label {
	font-family: var(--fs-logo-font-family, inherit);
}

/* Faders */
.fs-faders {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	margin-bottom: 110px;
}

.fs-fader {
	width: 82px;
	text-align: center;
}

.fs-fader__wrap {
	position: relative;
	width: 82px;
	height: 255px;
	margin: 0 auto 24px;
	cursor: pointer;
}

.fs-fader__wrap:focus {
	outline: none;
}

.fs-fader__wrap:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.45);
	outline-offset: 8px;
	border-radius: 999px;
}

.fs-fader__scale {
	position: absolute;
	left: 34%;
	top: 0;
	height: 255px;
	width: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.fs-fader__handle {
	position: absolute;
	left: 57%;
	width: 42px !important;
	height: auto !important;
	transform: translate(-50%, -50%);
	transition: top 280ms cubic-bezier(.2,.9,.2,1);
	z-index: 2;
	pointer-events: auto;
	filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.45));
}

.fs-fader[data-fader="quality"] .fs-fader__handle {
	cursor: not-allowed;
}

.fs-fader.is-dragging .fs-fader__handle {
	transition: none;
}

/* Knob positions */
.fs-fader[data-value="high"] .fs-fader__handle {
	top: 7%;
}

.fs-fader[data-value="normal"] .fs-fader__handle {
	top: 50%;
}

.fs-fader[data-value="low"] .fs-fader__handle {
	top: 93%;
}

.fs-fader__label {
	display: block;
	margin: 0 auto;
	width: auto;
	max-width: none;
	pointer-events: none;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.fs-fader[data-fader="quality"] .fs-fader__wrap {
	cursor: default;
}

/* Services */
.fs-services {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

/* Top row */
.fs-services__top-row {
	display: grid;
	grid-template-columns: 72px 90px 82px 120px;
	column-gap: 38px;
	align-items: start;
}

/* Bottom row */
.fs-services__bottom-row {
	display: flex;
	align-items: center;
	gap: 7px;
}

.fs-service-top {
	display: grid;
	grid-template-rows: 18px 28px;
	row-gap: 8px;
	align-items: center;
	justify-items: start;
}

.fs-service-button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	min-height: 28px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

.fs-service__light {
	width: 34px;
	height: auto;
	max-width: none;
	opacity: 0.22;
	filter: brightness(0.45) saturate(0.5);
	transform: translateY(2px);
	transition:
		opacity 280ms ease,
		filter 280ms ease,
		transform 280ms ease;
}

.fs-service__light.is-on {
	opacity: 1;
	filter: brightness(1.2) saturate(1.2) drop-shadow(0 0 7px rgba(0, 255, 80, 0.75));
	transform: translateY(0);
}

.fs-service-button .fs-service__light {
	flex: 0 0 auto;
}

.fs-service__label {
	display: block;
	width: auto;
	height: auto;
	max-width: none;
	opacity: 1;
	filter: none;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: #fff;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
	text-decoration: none;
}

.fs-service__label--top {
	cursor: default;
	pointer-events: none;
}

.fs-service__label--bottom {
	cursor: pointer;
}

.fs-service-button:hover .fs-service__label--bottom {
	opacity: 0.75;
}

/* IN / SOCIAL */
.fs-service-top[data-service="1"] .fs-service__label--top {
	width: 34px;
}

.fs-service-button[data-service="1"] .fs-service__label--bottom {
	width: 64px;
}

/* G ADS / WEB */
.fs-service-top[data-service="2"] .fs-service__label--top {
	width: 68px;
}

.fs-service-button[data-service="2"] .fs-service__label--bottom {
	width: 54px;
}

/* FB / DESIGN */
.fs-service-top[data-service="3"] .fs-service__label--top {
	width: 42px;
}

.fs-service-button[data-service="3"] .fs-service__label--bottom {
	width: 74px;
}

/* YT / MARKETING */
.fs-service-top[data-service="4"] .fs-service__label--top {
	width: 42px;
}

.fs-service-button[data-service="4"] .fs-service__label--bottom {
	width: 104px;
}

/* Center area */
.fs-hero__center {
	position: relative;
	z-index: 3;
	height: 100%;
	min-height: 760px;
	margin-left: 3rem;
	margin-right: -3rem;
}

.fs-turntable {
	position: absolute;
	left: -4%;
	top: 51%;
	width: 82%;
	aspect-ratio: 1 / 1;
	transform: translateY(-50%);
}

/* Vinyl layers */
.fs-vinyl-base,
.fs-vinyl,
.fs-vinyl-lights {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	pointer-events: none;
}

.fs-vinyl-base {
	z-index: 1;
}

.fs-vinyl {
	z-index: 2;
	opacity: 0;
	padding: 4.45%;
	left: 1.95%;
	top: -1.4%;
	transform: translateY(18px) rotate(-4deg) scale(1.38);
	transform-origin: 50% 50%;
	filter: blur(3px);
	will-change: transform, opacity, filter;
	transition:
		transform 1400ms cubic-bezier(.16, 1, .3, 1),
		opacity 500ms ease,
		filter 900ms ease;
}

.fs-vinyl-lights {
	z-index: 3;
	opacity: 0;
	padding: 4.45%;
	left: 2.12%;
	top: -1.4%;
	transform: translateY(18px) rotate(-4deg) scale(1.38);
	transform-origin: 50% 50%;
	filter: blur(3px);
	will-change: transform, opacity, filter;
	transition:
		transform 1400ms cubic-bezier(.16, 1, .3, 1),
		opacity 500ms ease,
		filter 900ms ease;
	mix-blend-mode: difference;
}

.fs-hero.is-vinyl-ready .fs-vinyl,
.fs-hero.is-vinyl-ready .fs-vinyl-lights {
	opacity: 1;
	transform: translateY(0) rotate(0deg) scale(1);
	filter: blur(0);
}

/* Needle */
.fs-needle-area {
	position: absolute;
	right: -32%;
	top: 32%;
	width: 49%;
	aspect-ratio: 1 / 1;
	z-index: 4;
	pointer-events: none;
}

.fs-needle {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	transform: translateY(-32%) rotate(0deg);
	transform-origin: 78% 18%;
	will-change: transform;
	pointer-events: none;
	transition:
		transform 850ms cubic-bezier(.2,.9,.2,1),
		opacity 250ms ease;
}

.fs-hero.is-needle-ready .fs-needle {
	opacity: 1;
	transform: translateY(-32%) rotate(0deg);
}

.fs-hero.is-needle-at-start .fs-needle {
	transform: translateY(-32%) rotate(13deg);
	transition:
		transform 950ms cubic-bezier(.2,.9,.2,1),
		opacity 250ms ease;
}

.fs-hero.is-needle-tracking .fs-needle {
	transform: translateY(-32%) rotate(26deg);
	transition:
		transform var(--fs-needle-track-duration, 26000ms) linear,
		opacity 250ms ease;
}

.fs-hero.is-needle-return .fs-needle {
	transform: translateY(-32%) rotate(0deg);
	transition:
		transform 1200ms cubic-bezier(.55,.05,.25,1),
		opacity 250ms ease;
}

/* Right area */
.fs-hero__right {
	position: relative;
	z-index: 6;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-left: 5.5rem;
}

.fs-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-decoration: none;
}

.fs-nav-knob {
	position: relative;
	display: block;
	width: 119px;
	height: 119px;
	border-radius: 50%;
}

.fs-nav-knob__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	pointer-events: none;
	transition:
		transform 220ms ease,
		filter 220ms ease;
}

.fs-nav-knob__img--left {
	z-index: 1;
	filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.42));
}

.fs-nav-knob__img--right {
	z-index: 2;
	filter: none;
}

.fs-nav-item:hover .fs-nav-knob__img--left {
	transform: rotate(-65deg);
	filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.52));
}

.fs-nav-label {
	display: block;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.fs-nav-item:hover .fs-nav-label {
	opacity: 0.75;
}

/* Service button skin */
a.fs-service-button img {
	rotate: 90deg;
	transform: scale(0.8) !important;
}

a.fs-service-button {
	width: 167px;
	height: 44px !important;
	background-image: var(--fs-service-button-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

a.fs-service-button .fs-service__label {
	font-weight: 200;
	font-size: 14px;
	letter-spacing: 2px;
}



/* Responsive service buttons are hidden on desktop */
.fs-services-responsive {
	display: none;
}

/* =========================================================
   RESPONSIVE LAYOUT
   All responsive rules are inside the plugin.
========================================================= */

/* Large desktop */
@media (max-width: 1600px) and (min-width: 1367px) {

	.fs-hero__inner {
		grid-template-columns: 27% 53% 20%;
		padding: 40px 55px;
	}

	.fs-logo__main {
		font-size: clamp(42px, 3vw, 54px);
	}

	.fs-logo__sub {
		font-size: 20px;
	}

	.fs-intro {
		width: 310px;
		font-size: 14px;
		margin-bottom: 58px;
	}

	.fs-faders {
		gap: 34px;
		margin-bottom: 70px;
	}

	.fs-fader {
		width: 72px;
	}

	.fs-fader__wrap {
		width: 72px;
		height: 220px;
	}

	.fs-fader__scale {
		height: 220px;
	}

	.fs-fader__handle {
		width: 38px !important;
	}

	.fs-services__top-row {
		grid-template-columns: 58px 72px 58px 82px;
		column-gap: 24px;
	}

	.fs-services__bottom-row {
		gap: 6px;
	}

	a.fs-service-button {
		width: 145px;
		height: 39px !important;
	}

	a.fs-service-button .fs-service__label {
		font-size: 12px;
		letter-spacing: 1.5px;
	}

	img.fs-service__light,
	.fs-service__light {
		width: 26px !important;
	}

	.fs-hero__center {
		min-height: 700px;
		margin-left: 1rem;
		margin-right: -2rem;
	}

	.fs-turntable {
		left: -1%;
		top: 51%;
		width: 78%;
	}

	.fs-hero__right {
		gap: 42px;
		margin-left: 3rem;
	}

	.fs-nav-knob {
		width: 86px;
		height: 86px;
	}

	.fs-nav-label {
		font-size: 12px;
	}
}

/* Laptop */
@media (max-width: 1366px) and (min-width: 1025px) {

	.fs-hero__inner {
		grid-template-columns: 30% 50% 20%;
		padding: 45px 42px;
	}

	.fs-hero__left {
		justify-content: center;
		padding-left: 0;
	}

	.fs-logo {
		margin-bottom: 30px;
	}

	.fs-logo__main {
		font-size: 44px;
	}

	.fs-logo__sub {
		font-size: 18px;
	}

	.fs-intro {
		width: 280px;
		font-size: 13px;
		line-height: 1.35;
		margin-bottom: 0;
	}

	.fs-faders,
	.fs-services {
		display: none !important;
	}

	.fs-hero__center {
		min-height: 620px;
		margin-left: 0;
		margin-right: 0;
	}

	.fs-turntable {
		left: 48%;
		top: 52%;
		width: min(54vw, 600px);
		transform: translate(-50%, -50%);
	}

	.fs-hero__right {
		gap: 34px;
		margin-left: 0;
	}

	.fs-nav-knob {
		width: 68px;
		height: 68px;
	}

	.fs-nav-label {
		font-size: 11px;
	}
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {

	.fs-hero {
		min-height: auto;
		overflow: hidden;
	}

	.fs-hero__inner {
		min-height: auto;
		display: grid;
		grid-template-columns: 34% 66%;
		grid-template-areas:
			"left center"
			"right right";
		align-items: center;
		padding: 44px 30px 36px;
		gap: 24px;
	}

	.fs-hero__left {
		grid-area: left;
		height: auto;
		justify-content: center;
		padding-left: 0;
	}

	.fs-logo {
		margin-bottom: 24px;
	}

	.fs-logo__main {
		font-size: 40px;
	}

	.fs-logo__sub {
		font-size: 16px;
	}

	.fs-intro {
		width: 240px;
		font-size: 12px;
		line-height: 1.35;
		margin-bottom: 0;
	}

	.fs-faders,
	.fs-services {
		display: none !important;
	}

	.fs-hero__center {
		grid-area: center;
		height: 520px;
		min-height: 520px;
		margin-left: 0;
		margin-right: 0;
		overflow: visible;
	}

	.fs-turntable {
		left: 44%;
		top: 50%;
		width: min(62vw, 520px);
		transform: translate(-50%, -50%);
	}

	.fs-hero__right {
		grid-area: right;
		width: 100%;
		height: auto;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		align-items: start;
		justify-items: center;
		gap: 18px;
		margin-left: 0;
		margin-top: 6px;
	}

	.fs-nav-item {
		gap: 10px;
	}

	.fs-nav-knob {
		width: 58px;
		height: 58px;
	}

	.fs-nav-label {
		font-size: 10px;
	}
}

/* Mobile */
@media (max-width: 767px) {

	.fs-hero {
		min-height: auto;
		overflow: hidden;
	}

	.fs-hero__inner {
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 34px 20px 42px;
		gap: 26px;
	}

	.fs-hero__left {
		order: 1;
		height: auto;
		padding-left: 0;
		justify-content: flex-start;
		text-align: left;
	}

	.fs-logo {
		margin-bottom: 18px;
	}

	.fs-logo__main {
		font-size: clamp(36px, 11vw, 46px);
	}

	.fs-logo__sub {
		font-size: 16px;
	}

	.fs-intro {
		width: 100%;
		max-width: 340px;
		font-size: 12px;
		line-height: 1.35;
		margin-bottom: 0;
	}

	.fs-faders,
	.fs-services {
		display: none !important;
	}

	.fs-hero__center {
		order: 2;
		width: 100%;
		height: 350px;
		min-height: 350px;
		margin-left: 0;
		margin-right: 0;
		overflow: visible;
	}

	.fs-turntable {
		left: 43%;
		top: 50%;
		width: min(76vw, 340px);
		transform: translate(-50%, -50%);
	}

	.fs-hero__right {
		order: 3;
		width: 100%;
		height: auto;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		align-items: start;
		justify-items: center;
		gap: 10px;
		margin-left: 0;
		margin-top: 0;
	}

	.fs-nav-item {
		gap: 8px;
	}

	.fs-nav-knob {
		width: 46px;
		height: 46px;
	}

	.fs-nav-label {
		font-size: 9px;
		letter-spacing: 0.03em;
	}
}

/* Small mobile */
@media (max-width: 420px) {

	.fs-hero__inner {
		padding: 30px 18px 38px;
		gap: 24px;
	}

	.fs-logo__main {
		font-size: 38px;
	}

	.fs-logo__sub {
		font-size: 15px;
	}

	.fs-intro {
		max-width: 310px;
		font-size: 12px;
	}

	.fs-hero__center {
		height: 315px;
		min-height: 315px;
	}

	.fs-turntable {
		left: 42%;
		width: min(74vw, 300px);
	}

	.fs-nav-knob {
		width: 42px;
		height: 42px;
	}

	.fs-nav-label {
		font-size: 8px;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.fs-vinyl,
	.fs-vinyl-lights,
	.fs-needle,
	.fs-service__light,
	.fs-fader__handle,
	.fs-nav-knob__img {
		animation: none !important;
		transition: none !important;
	}
}

/* Flicker */
@keyframes fsLightFlicker {
	0% {
		opacity: 1;
		filter: brightness(1.2) saturate(1.2) drop-shadow(0 0 7px rgba(0, 255, 80, 0.75));
	}

	12% {
		opacity: 0.55;
		filter: brightness(0.75) saturate(0.85) drop-shadow(0 0 3px rgba(0, 255, 80, 0.35));
	}

	24% {
		opacity: 1;
		filter: brightness(1.45) saturate(1.35) drop-shadow(0 0 12px rgba(0, 255, 80, 0.95));
	}

	38% {
		opacity: 0.7;
		filter: brightness(0.9) saturate(0.95) drop-shadow(0 0 4px rgba(0, 255, 80, 0.45));
	}

	55% {
		opacity: 1;
		filter: brightness(1.3) saturate(1.25) drop-shadow(0 0 10px rgba(0, 255, 80, 0.85));
	}

	72% {
		opacity: 0.82;
		filter: brightness(1) saturate(1) drop-shadow(0 0 5px rgba(0, 255, 80, 0.55));
	}

	100% {
		opacity: 1;
		filter: brightness(1.2) saturate(1.2) drop-shadow(0 0 7px rgba(0, 255, 80, 0.75));
	}
}

.fs-service__light.is-on {
	animation-name: fsLightFlicker;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

/* Top row */
.fs-service-top[data-service="1"] .fs-service__light--top.is-on {
	animation-duration: 1700ms;
	animation-delay: 0ms;
}

.fs-service-top[data-service="2"] .fs-service__light--top.is-on {
	animation-duration: 2300ms;
	animation-delay: 260ms;
}

.fs-service-top[data-service="3"] .fs-service__light--top.is-on {
	animation-duration: 1900ms;
	animation-delay: 520ms;
}

.fs-service-top[data-service="4"] .fs-service__light--top.is-on {
	animation-duration: 2600ms;
	animation-delay: 180ms;
}

/* Bottom row */
.fs-service-button[data-service="1"] .fs-service__light--bottom.is-on {
	animation-duration: 2400ms;
	animation-delay: 410ms;
}

.fs-service-button[data-service="2"] .fs-service__light--bottom.is-on {
	animation-duration: 1800ms;
	animation-delay: 720ms;
}

.fs-service-button[data-service="3"] .fs-service__light--bottom.is-on {
	animation-duration: 2800ms;
	animation-delay: 330ms;
}

.fs-service-button[data-service="4"] .fs-service__light--bottom.is-on {
	animation-duration: 2100ms;
	animation-delay: 610ms;
}

/* =========================================================
   Responsive service buttons
   SOCIAL / WEB / DESIGN / MARKETING below right navigation.
========================================================= */
@media (max-width: 1366px) {

	.fs-services-responsive {
		display: grid !important;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		align-items: center;
		justify-items: center;
		width: 100%;
		gap: 8px;
		z-index: 7;
	}

	.fs-services-responsive .fs-service-button {
		width: 138px;
		height: 37px !important;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
	}

	.fs-services-responsive .fs-service__light {
		width: 22px !important;
		flex: 0 0 auto;
	}

	.fs-services-responsive .fs-service__label {
		font-size: 9px;
		line-height: 1;
		letter-spacing: 0.6px;
		white-space: nowrap;
	}
}

/* Laptop placement */
@media (max-width: 1366px) and (min-width: 1025px) {

	.fs-hero__inner {
		grid-template-areas:
			"left center right"
			"services services services";
		row-gap: 18px;
	}

	.fs-hero__left {
		grid-area: left;
	}

	.fs-hero__center {
		grid-area: center;
	}

	.fs-hero__right {
		grid-area: right;
	}

	.fs-services-responsive {
		grid-area: services;
		margin-top: -20px;
	}
}

/* Tablet placement */
@media (max-width: 1024px) and (min-width: 768px) {

	.fs-hero__inner {
		grid-template-areas:
			"left center"
			"right right"
			"services services";
	}

	.fs-services-responsive {
		grid-area: services;
		margin-top: 2px;
	}

	.fs-services-responsive .fs-service-button {
		width: 120px;
		height: 34px !important;
	}

	.fs-services-responsive .fs-service__light {
		width: 19px !important;
	}

	.fs-services-responsive .fs-service__label {
		font-size: 8px;
		letter-spacing: 0.4px;
	}
}

/* Mobile placement */
@media (max-width: 767px) {

	.fs-services-responsive {
		order: 4;
		margin-top: -6px;
		gap: 6px;
	}

	.fs-services-responsive .fs-service-button {
		width: 23vw;
		max-width: 94px;
		min-width: 68px;
		height: 30px !important;
		gap: 3px;
	}

	.fs-services-responsive .fs-service__light {
		width: 16px !important;
	}

	.fs-services-responsive .fs-service__label {
		font-size: 6.6px;
		letter-spacing: 0.15px;
		line-height: 1;
	}
}

/* Small mobile button sizing */
@media (max-width: 420px) {

	.fs-services-responsive {
		gap: 4px;
	}

	.fs-services-responsive .fs-service-button {
		width: 23vw;
		max-width: 88px;
		min-width: 66px;
		height: 29px !important;
		gap: 2px;
	}

	.fs-services-responsive .fs-service__light {
		width: 15px !important;
	}

	.fs-services-responsive .fs-service__label {
		font-size: 6px;
		letter-spacing: 0;
	}
}


/* =========================================================
   Viewport fill fix
   Prevents white space below the hero on tablet/mobile.
========================================================= */
@media (max-width: 1024px) {

	.fs-hero {
		min-height: 100vh !important;
		min-height: 100svh !important;
		min-height: 100dvh !important;
		background: linear-gradient(to top right, #212121 0%, #252525 100%) !important;
		overflow: hidden !important;
	}

	.fs-hero__inner {
		min-height: 100vh !important;
		min-height: 100svh !important;
		min-height: 100dvh !important;
	}

	body.admin-bar .fs-hero,
	body.admin-bar .fs-hero__inner {
		min-height: calc(100vh - 46px) !important;
		min-height: calc(100svh - 46px) !important;
		min-height: calc(100dvh - 46px) !important;
	}
}

@media (min-width: 783px) and (max-width: 1024px) {

	body.admin-bar .fs-hero,
	body.admin-bar .fs-hero__inner {
		min-height: calc(100vh - 32px) !important;
		min-height: calc(100svh - 32px) !important;
		min-height: calc(100dvh - 32px) !important;
	}
}

/* Mobile responsive services: 2 columns with 14px labels */
@media (max-width: 767px) {
	.fs-services-responsive {
		grid-template-columns: repeat(2, auto) !important;
		justify-content: center !important;
		justify-items: center !important;
		column-gap: 10px !important;
		row-gap: 10px !important;
	}

	.fs-services-responsive .fs-service-button {
		width: 136px !important;
		max-width: 136px !important;
		min-width: 136px !important;
		height: 38px !important;
		gap: 5px !important;
	}

	.fs-services-responsive .fs-service__light {
		width: 22px !important;
	}

	.fs-services-responsive .fs-service__label {
		font-size: 14px !important;
		letter-spacing: 0.6px !important;
		line-height: 1 !important;
	}
}

/* Mobile + tablet service buttons alignment override */
@media (max-width: 1024px) {
	.fs-services-responsive .fs-service-button {
		display: flex !important;
		justify-content: flex-start !important;
	}
}

/* Laptop: keep desktop layout and scale everything down */
@media (max-width: 1366px) and (min-width: 1025px) {

	.fs-hero {
		min-height: 100vh !important;
		overflow: hidden !important;
	}

	.fs-hero__inner {
		display: grid !important;
		grid-template-columns: 27% 55% 18% !important;
		grid-template-areas: none !important;
		align-items: center !important;
		min-height: 100vh !important;
		padding: 34px 42px !important;
		gap: 0 !important;
		row-gap: 0 !important;
	}

	.fs-hero__left {
		grid-area: auto !important;
		height: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		padding-left: 0 !important;
		text-align: left !important;
	}

	.fs-logo {
		margin-bottom: 26px !important;
	}

	.fs-logo__main {
		font-size: clamp(34px, 3vw, 44px) !important;
		line-height: 0.9 !important;
	}

	.fs-logo__sub {
		font-size: 17px !important;
	}

	.fs-intro {
		width: 270px !important;
		font-size: 12px !important;
		line-height: 1.25 !important;
		margin-bottom: 44px !important;
	}

	.fs-faders {
		display: flex !important;
		gap: 24px !important;
		margin-bottom: 46px !important;
	}

	.fs-fader {
		width: 58px !important;
	}

	.fs-fader__wrap {
		width: 58px !important;
		height: 168px !important;
		margin-bottom: 16px !important;
	}

	.fs-fader__scale {
		height: 168px !important;
		left: 34% !important;
	}

	.fs-fader__handle {
		width: 30px !important;
		left: 57% !important;
	}

	.fs-fader__label {
		font-size: 10px !important;
		letter-spacing: 0.03em !important;
	}

	.fs-services {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 5px !important;
	}

	.fs-services__top-row {
		display: grid !important;
		grid-template-columns: 48px 58px 48px 68px !important;
		column-gap: 15px !important;
		align-items: start !important;
	}

	.fs-services__bottom-row {
		display: flex !important;
		align-items: center !important;
		gap: 4px !important;
	}

	.fs-service-top {
		grid-template-rows: 14px 22px !important;
		row-gap: 6px !important;
	}

	.fs-service__light,
	img.fs-service__light {
		width: 20px !important;
	}

	a.fs-service-button {
		width: 112px !important;
		height: 31px !important;
		gap: 4px !important;
	}

	a.fs-service-button img {
		transform: scale(0.7) !important;
	}

	a.fs-service-button .fs-service__label,
	.fs-service__label {
		font-size: 9px !important;
		letter-spacing: 0.8px !important;
		line-height: 1 !important;
	}

	.fs-hero__center {
		grid-area: auto !important;
		position: relative !important;
		height: 100% !important;
		min-height: 620px !important;
		margin-left: 0 !important;
		margin-right: -24px !important;
		overflow: visible !important;
	}

	.fs-turntable {
		left: 46% !important;
		top: 51% !important;
		width: min(52vw, 620px) !important;
		transform: translate(-50%, -50%) !important;
	}

	.fs-needle-area {
		right: -32% !important;
		top: 32% !important;
		width: 49% !important;
	}

	.fs-hero__right {
		grid-area: auto !important;
		height: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 24px !important;
		margin-left: 0 !important;
		margin-top: 0 !important;
	}

	.fs-nav-item {
		gap: 9px !important;
	}

	.fs-nav-knob {
		width: 58px !important;
		height: 58px !important;
	}

	.fs-nav-label {
		font-size: 10px !important;
		letter-spacing: 0.03em !important;
	}

	.fs-services-responsive {
		display: none !important;
	}
}

/* Laptop: reduce turntable overlap with right navigation */
@media (max-width: 1366px) and (min-width: 1025px) {
	.fs-hero__inner {
		grid-template-columns: 28% 50% 22% !important;
		padding: 34px 38px !important;
	}

	.fs-hero__center {
		min-height: 560px !important;
		margin-right: 0 !important;
	}

	.fs-turntable {
		left: 48% !important;
		top: 51% !important;
		width: min(46vw, 540px) !important;
		transform: translate(-50%, -50%) !important;
	}

	.fs-hero__right {
		gap: 22px !important;
		margin-left: 0 !important;
	}

	.fs-nav-knob {
		width: 54px !important;
		height: 54px !important;
	}
}
