/**
 * Web Design Southport — homepage modules
 */

:root {
	--wds-red: #d93b2e;
	--wds-dark: #3c3c3b;
	--wds-light: #f5f5f3;
	--wds-white: #ffffff;
	--wds-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.text-highlight {
	color: var(--wds-red);
}

.wds-btn-primary {
	background-color: var(--wds-red) !important;
	color: var(--wds-white) !important;
	border: 1px solid var(--wds-red);
	transition: transform 0.35s var(--wds-ease), background-color 0.35s ease;
}

.wds-btn-primary:hover {
	background-color: #c03428 !important;
	color: var(--wds-white) !important;
}

.wds-btn-primary .btn-arrow,
.btn .btn-arrow {
	display: inline-block;
	transition: transform 0.35s var(--wds-ease);
}

.wds-btn-primary:hover .btn-arrow,
.btn:hover .btn-arrow {
	transform: translateX(4px);
}

.wds-reveal {
	opacity: 0;
	transform: translateY(20px);
}

html:not(.wds-js) .wds-reveal,
.wds-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.wds-split-target:not(.is-split-ready) {
	opacity: 1;
}

.wds-split-target.is-split-ready {
	opacity: 1;
}

.wds-hero__title {
	font-size: clamp(2.25rem, 5vw, 4.25rem);
	line-height: 1.05;
	margin-bottom: 1.25rem;
}

.wds-hero {
	position: relative;
	min-height: min(100svh, 920px);
	display: flex;
	align-items: center;
	padding: clamp(5.5rem, 10vh, 7rem) 0 clamp(3rem, 6vh, 4rem);
	color: var(--wds-dark);
	background: var(--wds-light);
	overflow: hidden;
}

.wds-hero__container {
	width: 100%;
}

.wds-hero__content {
	padding-right: clamp(0rem, 2vw, 2rem);
}

@media (min-width: 992px) {
	.wds-hero .row.wds-hero__split {
		min-height: clamp(520px, 62vh, 680px);
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
	}

	.wds-hero__content {
		order: 1;
		position: relative;
		z-index: 2;
		padding-right: clamp(1.5rem, 4vw, 3.5rem);
		max-width: 50%;
		min-width: 0;
		flex: 1 1 50%;
	}

	.wds-hero__visual-col {
		order: 2;
		position: relative;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		overflow: visible;
		margin-right: 0;
		padding-right: 0;
		min-width: 0;
		flex: 1 1 50%;
		max-width: 50%;
	}

	.wds-hero__visual {
		margin-top: 0;
		width: 100%;
		max-width: 760px;
		margin-left: auto;
		margin-right: 0;
	}

	.wds-hero__mockup,
	.wds-hero__showcase {
		width: 100%;
		margin-left: auto;
		margin-right: 0;
	}
}

@media (min-width: 1200px) {
	.wds-hero__visual {
		max-width: 820px;
	}
}

.wds-hero__media {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.wds-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.12;
}

.wds-hero__video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
}

.wds-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(245, 245, 243, 0.95) 40%, rgba(245, 245, 243, 0.75) 100%);
}

.wds-hero__grid-lines {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(60, 60, 59, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(60, 60, 59, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.wds-hero__accent {
	position: absolute;
	top: 12%;
	right: 0;
	width: min(420px, 40vw);
	height: min(420px, 40vw);
	background: var(--wds-red);
	opacity: 0.08;
	border-radius: 40% 60% 55% 45% / 48% 42% 58% 52%;
	transform: rotate(-8deg);
}

.wds-hero__container {
	position: relative;
	z-index: 2;
}

.wds-hero__eyebrow {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wds-red);
	margin-bottom: 1rem;
}

.wds-hero__title {
	font-size: clamp(2.25rem, 5vw, 4.25rem);
	line-height: 1.08;
	margin-bottom: 1.25rem;
	max-width: none;
}

.wds-hero__intro {
	font-size: 1.125rem;
	max-width: 36rem;
	margin-bottom: 2rem;
	color: rgba(60, 60, 59, 0.88);
}

.wds-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.wds-hero__label {
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.wds-hero__trust {
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.wds-hero__trust li {
	list-style: none;
	list-style-type: none;
	display: flex;
	flex-direction: column;
}

.wds-hero__trust-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wds-dark);
}

.wds-hero__trust-label {
	font-size: 0.8125rem;
	max-width: 12rem;
	opacity: 0.75;
}

.wds-hero__visual {
	position: relative;
	margin-top: 2rem;
	transition: transform 0.2s ease-out;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.wds-hero__mockup {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(60, 60, 59, 0.12);
}

.wds-hero__mockup--placeholder {
	min-height: 320px;
	background: linear-gradient(160deg, #ffffff 0%, #f0f0ec 100%);
	border: 1px solid rgba(60, 60, 59, 0.12);
	box-shadow: 0 32px 80px rgba(60, 60, 59, 0.1);
	display: grid;
	grid-template-rows: 2rem 1fr 2rem;
	gap: 0.75rem;
	padding: 1rem;
}

.wds-hero__mockup--placeholder span:first-child {
	background: rgba(60, 60, 59, 0.08);
	border-radius: 4px;
}

.wds-hero__mockup--placeholder span:nth-child(2) {
	background: linear-gradient(145deg, rgba(217, 59, 46, 0.12), rgba(60, 60, 59, 0.06));
	border-radius: 8px;
}

.wds-hero__mockup--placeholder span:nth-child(3) {
	background: rgba(60, 60, 59, 0.06);
	border-radius: 4px;
	width: 60%;
}

@media (min-width: 992px) {
	.wds-hero__visual {
		margin-top: 0;
	}
}

/* WDS layout shell (homepage + service / work templates) */
body.wds-home,
body.wds-service-page,
body.wds-work-page {
	--wds-content-max: 1280px;
	--wds-header-max: 1440px;
	--wds-gutter-x: clamp(1.25rem, 3vw, 2.5rem);
}

body.wds-home .container,
body.wds-service-page .container,
body.wds-work-page .container {
	max-width: var(--wds-content-max);
	padding-left: var(--wds-gutter-x);
	padding-right: var(--wds-gutter-x);
}

body.wds-home header.site-header .container,
body.wds-service-page header.site-header .container,
body.wds-work-page header.site-header .container {
	max-width: var(--wds-header-max);
}

body.wds-home header.site-header .main-row {
	flex-wrap: nowrap;
}

body.wds-home header.site-header .left-col,
body.wds-home header.site-header .right-col {
	width: auto;
	flex: unset;
	max-width: none;
}

body.wds-home header.site-header .left-col {
	flex: 0 0 auto;
	min-width: 0;
}

body.wds-home header.site-header .right-col {
	flex: 1 1 auto;
	min-width: 0;
	justify-content: flex-end;
}

body.wds-home header.site-header .logo-text {
	font-weight: 700;
	font-size: 1rem;
	color: var(--wds-red, #d93b2e);
	text-decoration: none;
	letter-spacing: -0.02em;
}

body.wds-home header.site-header {
	background: transparent;
}

body.wds-home.wds-has-hero header.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(60, 60, 59, 0.08);
}

body.wds-home header.site-header .container {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

body.wds-home header.site-header .navbar {
	padding: 0;
	width: 100%;
}

body.wds-home header.site-header #primary-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.25rem 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.wds-home header.site-header #primary-menu a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--wds-dark);
	text-decoration: none;
}

body.wds-home header.site-header #primary-menu a:hover {
	color: var(--wds-red);
}

body.wds-home header.site-header .header-nav-wrap {
	gap: clamp(0.75rem, 2vw, 1.5rem);
}

body.wds-home header.site-header .navbar-collapse {
	flex: 1 1 auto;
}

body.wds-home header.site-header .header-cta {
	flex-shrink: 0;
}

.wds-intro {
	padding: clamp(4rem, 10vw, 7rem) 0;
	background: var(--wds-white);
}

.wds-intro__heading {
	font-size: clamp(1.75rem, 4vw, 3rem);
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.wds-intro__content {
	font-size: 1.125rem;
	max-width: 40rem;
	margin-bottom: 2rem;
}

.wds-services {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--wds-light);
}

.wds-services__title {
	margin-bottom: 1rem;
}

.wds-services__intro {
	font-size: 1.0625rem;
	margin: 0;
}

.wds-services__header {
	margin-bottom: 3rem;
}

.wds-services__item {
	border-top: 1px solid rgba(60, 60, 59, 0.12);
	position: relative;
}

.wds-services__item.is-active {
	background: rgba(255, 255, 255, 0.65);
}

.wds-services__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.35rem 0;
	background: none;
	border: 0;
	text-align: left;
	cursor: pointer;
	color: inherit;
	font: inherit;
}

.wds-services__trigger:focus-visible {
	outline: 2px solid var(--wds-red);
	outline-offset: 4px;
}

.wds-services__number {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--wds-red);
	min-width: 2rem;
}

.wds-services__name {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 600;
	flex: 1;
}

.wds-services__toggle-icon {
	width: 1rem;
	height: 1rem;
	position: relative;
	flex-shrink: 0;
}

.wds-services__toggle-icon::before,
.wds-services__toggle-icon::after {
	content: "";
	position: absolute;
	background: var(--wds-dark);
	transition: transform 0.3s ease;
}

.wds-services__toggle-icon::before {
	width: 100%;
	height: 2px;
	top: 50%;
	transform: translateY(-50%);
}

.wds-services__toggle-icon::after {
	width: 2px;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.wds-services__item.is-active .wds-services__toggle-icon::after {
	transform: translateX(-50%) scaleY(0);
}

.wds-services__item-heading {
	margin: 0;
	font: inherit;
}

.wds-services__panel {
	padding: 0.5rem 0 1.75rem 3.25rem;
	max-width: 36rem;
}

.wds-services__panel p {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(60, 60, 59, 0.82);
}

.wds-services__panel-media {
	margin: 0 0 1rem;
	overflow: hidden;
	border-radius: 8px;
}

.wds-services__panel-img {
	display: block;
	width: 100%;
	height: auto;
}

.wds-services__panel-inner {
	padding: 0 0 1.5rem 3.25rem;
	max-width: 36rem;
}

.wds-services__accordion {
	margin-top: 1rem;
	border-bottom: 1px solid rgba(60, 60, 59, 0.12);
}

@media (max-width: 991.98px) {
	.wds-services__accordion {
		margin-top: 1.5rem;
		border-bottom: none;
	}

	.wds-services__item {
		border-top: none;
		margin-bottom: 0.65rem;
		border: 1px solid rgba(60, 60, 59, 0.1);
		border-radius: 8px;
		overflow: hidden;
	}

	.wds-services__item.is-active {
		background: rgba(255, 255, 255, 0.92);
		box-shadow: 0 8px 28px rgba(60, 60, 59, 0.06);
	}

	.wds-services__trigger {
		padding: 1.25rem 1.25rem;
		gap: 1rem;
		align-items: flex-start;
	}

	.wds-services__item.is-active .wds-services__trigger {
		padding-bottom: 0.65rem;
	}

	.wds-services__number {
		min-width: 1.75rem;
		padding-top: 0.2rem;
	}

	.wds-services__name {
		font-size: 1.2rem;
		line-height: 1.35;
		padding-top: 0.05rem;
	}

	.wds-services__toggle-icon {
		margin-top: 0.35rem;
	}

	.wds-services__panel {
		padding: 0 1.25rem 1.5rem 1.25rem;
		max-width: none;
	}

	.wds-services__panel p {
		margin: 0 0 1.125rem;
		font-size: 1.0625rem;
		line-height: 1.65;
	}

	.wds-services__link {
		display: inline-block;
		margin-top: 0.25rem;
	}
}

@media (min-width: 992px) {
	.wds-services__accordion {
		display: none !important;
	}
}

.wds-services__link {
	font-weight: 600;
	color: var(--wds-red);
	text-decoration: none;
}

.wds-services__link:hover {
	color: var(--wds-red);
	text-decoration: underline;
}

.wds-services__preview--desktop {
	display: none;
}

@media (min-width: 992px) {
	.wds-services__list {
		position: relative;
	}

	.wds-services__preview--desktop {
		display: block;
		position: absolute;
		right: 0;
		top: 1rem;
		width: 38%;
		opacity: 0;
		transform: translateY(12px);
		transition: opacity 0.4s ease, transform 0.4s ease;
		pointer-events: none;
	}

	.wds-services__item.is-active .wds-services__preview--desktop {
		opacity: 1;
		transform: translateY(0);
	}

	.wds-services__preview-img {
		border-radius: 8px;
		width: 100%;
		height: auto;
	}
}

.wds-work {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--wds-white);
	overflow: hidden;
}

.wds-work--home {
	position: relative;
	overflow-x: clip;
	background: var(--wds-light, #f5f5f3);
}

.wds-work--home .wds-work__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 65% 50% at 0% 0%, rgba(217, 59, 46, 0.06), transparent 55%),
		radial-gradient(ellipse 55% 45% at 100% 100%, rgba(60, 60, 59, 0.04), transparent 50%);
	pointer-events: none;
}

.wds-work__container {
	position: relative;
	z-index: 1;
}

.wds-work--home .wds-work__head {
	display: grid;
	gap: 1rem 2rem;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 992px) {
	.wds-work--home .wds-work__head {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		align-items: end;
	}

	.wds-work--home .wds-work__head-main {
		grid-column: 1;
		grid-row: 1;
	}

	.wds-work--home .wds-work__intro {
		grid-column: 1;
		grid-row: 2;
		max-width: 36rem;
		margin: 0;
	}

	.wds-work--home .wds-work__archive-link {
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: center;
		justify-self: end;
	}
}

.wds-work--home .wds-work__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wds-red);
}

.wds-work--home .wds-work__title {
	margin: 0;
	max-width: 12em;
	line-height: 1.12;
	text-wrap: balance;
	font-size: clamp(2rem, 4vw, 3.25rem);
}

.wds-work__header {
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.wds-work__intro {
	max-width: 36rem;
	margin-bottom: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(60, 60, 59, 0.78);
}

.wds-work__header-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 1rem;
}

@media (min-width: 992px) {
	.wds-work__header-actions {
		justify-content: flex-end;
		margin-top: 0;
		padding-bottom: 0.35rem;
	}
}

.wds-work__archive-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	border-bottom: 2px solid rgba(217, 59, 46, 0.35);
	padding-bottom: 0.15rem;
	transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.wds-work__archive-link:hover {
	text-decoration: none;
	color: var(--wds-red);
	border-color: var(--wds-red);
	gap: 0.55rem;
}

.wds-work__carousel {
	margin-top: 0.25rem;
	max-width: 100%;
	min-width: 0;
}

.wds-work__track {
	display: flex;
	align-items: stretch;
	gap: clamp(1rem, 2vw, 1.35rem);
	width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
	padding-bottom: 0.35rem;
}

.wds-work__track::-webkit-scrollbar {
	display: none;
}

.wds-work__track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
	user-select: none;
}

.wds-work__spacer {
	flex: 0 0 max(1.25rem, calc((100% - var(--wds-content-max, 1280px)) / 2 + var(--wds-gutter-x, 1.25rem)));
}

.wds-work__card {
	flex: 0 0 min(82vw, 340px);
	scroll-snap-align: start;
	scroll-snap-stop: always;
	border: 1px solid rgba(60, 60, 59, 0.08);
	border-radius: 12px;
	padding: 0;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 768px) {
	.wds-work__card {
		flex-basis: min(42vw, 380px);
	}
}

@media (min-width: 1200px) {
	.wds-work__card {
		flex-basis: 400px;
	}
}

.wds-work__card:hover {
	border-color: rgba(217, 59, 46, 0.22);
	box-shadow: 0 20px 48px rgba(60, 60, 59, 0.1);
	transform: translateY(-3px);
}

.wds-work__card-link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.wds-work__card-link:hover {
	text-decoration: none;
	color: inherit;
}

.wds-work__image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	margin-bottom: 0;
	background: var(--wds-light);
	aspect-ratio: 16 / 10;
}

.wds-work__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.6s var(--wds-ease);
}

.wds-work__card-link:hover .wds-work__image {
	transform: scale(1.04);
}

.wds-work__stat-badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	max-width: calc(100% - 2rem);
	padding: 0.4rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: var(--wds-dark);
	background: rgba(255, 255, 255, 0.92);
	border-radius: 4px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.wds-work__meta {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.15rem 1.25rem 1.35rem;
}

.wds-work__cats {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--wds-red);
	margin-bottom: 0.35rem;
}

.wds-work__project-title {
	font-family: "Newsreader", Georgia, serif;
	font-size: 1.35rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.wds-work__excerpt {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(60, 60, 59, 0.78);
	margin-bottom: 0.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wds-work__cta {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wds-dark);
	margin-top: auto;
}

.wds-work__cta-arrow {
	color: var(--wds-red);
	margin-left: 0.15em;
	display: inline-block;
	transition: transform 0.25s ease;
}

.wds-work__card-link:hover .wds-work__cta-arrow {
	transform: translateX(4px);
}

.wds-work__footer {
	margin-top: 1.25rem;
}

.wds-work__controls {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
	.wds-work__controls {
		grid-template-columns: auto auto minmax(8rem, 12rem) 1fr;
	}
}

.wds-work__progress-track {
	display: none;
	height: 3px;
	border-radius: 999px;
	background: rgba(60, 60, 59, 0.12);
	overflow: hidden;
}

@media (min-width: 768px) {
	.wds-work__progress-track {
		display: block;
	}
}

.wds-work__progress-fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: var(--wds-red);
	transition: width 0.15s ease-out;
}

.wds-work__nav {
	display: flex;
	gap: 0.5rem;
}

.wds-work__nav-btn {
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid rgba(60, 60, 59, 0.15);
	border-radius: 999px;
	background: #fff;
	color: var(--wds-dark);
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.wds-work__nav-btn:hover:not(:disabled) {
	border-color: var(--wds-red);
	color: var(--wds-red);
}

.wds-work__nav-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.wds-work__progress {
	margin: 0;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--wds-dark);
}

.wds-work__progress-sep {
	opacity: 0.45;
	margin: 0 0.15rem;
}

.wds-work__scroll-hint {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(60, 60, 59, 0.55);
	grid-column: 1 / -1;
}

@media (min-width: 768px) {
	.wds-work__scroll-hint {
		justify-self: end;
		text-align: right;
	}
}

.wds-work__placeholder {
	padding: 2rem;
	background: var(--wds-light);
	border-radius: 8px;
}

.wds-why {
	position: relative;
	padding: clamp(5rem, 10vw, 8rem) 0;
	background: #2a2a29;
	color: var(--wds-white);
	overflow: hidden;
}

.wds-why__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(217, 59, 46, 0.14), transparent 55%),
		radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 255, 255, 0.04), transparent 50%);
	pointer-events: none;
}

.wds-why__container {
	position: relative;
	z-index: 1;
}

.wds-why__head {
	max-width: 42rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wds-why__head-main {
	margin-bottom: 0;
}

.wds-why__eyebrow {
	font-family: "Instrument Sans", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wds-red);
	margin: 0 0 1rem;
}

.wds-why__title {
	color: var(--wds-white);
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.05;
	margin: 0 0 1rem;
}

.wds-why__intro {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.0625rem;
	line-height: 1.6;
	margin: 0;
	max-width: 36rem;
}

.wds-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.wds-why__cell {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.wds-why__cell-inner {
	padding: 1.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wds-why__index {
	font-family: "Instrument Sans", sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--wds-red);
}

.wds-why__cell-title {
	color: var(--wds-white);
	font-family: "Instrument Sans", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.5rem;
}

.wds-why__cell-desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.wds-why__cell:hover,
.wds-why__cell:focus-within {
	border-color: rgba(217, 59, 46, 0.45);
	background: rgba(255, 255, 255, 0.06);
}

.wds-why__cell--media {
	margin: 0;
	overflow: hidden;
	min-height: 220px;
}

.wds-why__cell--media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.wds-why__cell--media:hover,
.wds-why__cell--media:focus-within {
	background: transparent;
}

.wds-why__cell--media:hover img {
	transform: scale(1.04);
}

@media (min-width: 768px) {
	.wds-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.wds-why__cell-inner {
		padding: 1.75rem;
	}

	.wds-why__cell--media {
		grid-column: 1 / -1;
		min-height: 280px;
	}
}

@media (min-width: 992px) {
	.wds-why__head {
		display: grid;
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
		gap: 2rem 3rem;
		max-width: none;
		align-items: end;
		margin-bottom: 3rem;
	}

	.wds-why__intro {
		margin: 0;
		padding-bottom: 0.25rem;
	}

	.wds-why__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		grid-auto-rows: minmax(150px, auto);
		gap: 1rem;
	}

	.wds-why__cell:nth-child(1) {
		grid-column: 1 / span 6;
		grid-row: span 2;
	}

	.wds-why__cell:nth-child(2) {
		grid-column: 7 / span 6;
		grid-row: 1;
	}

	.wds-why__cell:nth-child(3) {
		grid-column: 7 / span 6;
		grid-row: 2;
	}

	.wds-why__cell:nth-child(n + 4) {
		grid-column: span 4;
	}

	.wds-why__cell--media {
		grid-column: span 4;
		min-height: 0;
	}

	.wds-why__cell--feature .wds-why__cell-inner {
		padding: 2.25rem;
		justify-content: flex-start;
		min-height: 100%;
	}

	.wds-why__cell--feature .wds-why__index {
		font-size: 1rem;
	}

	.wds-why__cell--feature .wds-why__cell-title {
		font-family: "Newsreader", serif;
		font-size: clamp(1.5rem, 2vw, 2rem);
		font-weight: 500;
		max-width: 18ch;
	}

	.wds-why__cell--feature .wds-why__cell-desc {
		font-size: 1rem;
		max-width: 42ch;
		color: rgba(255, 255, 255, 0.9);
	}

	.wds-why__cell--feature::after {
		content: "";
		position: absolute;
		top: 1.25rem;
		right: 1.25rem;
		width: 48px;
		height: 3px;
		background: var(--wds-red);
	}
}

@media (min-width: 1200px) {
	.wds-why__head {
		grid-template-columns: 1fr 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wds-why__cell {
		transition: none;
	}
}

.wds-process {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--wds-light);
}

.wds-process__header {
	max-width: 40rem;
	margin-bottom: 2rem;
}

.wds-process__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

.wds-process__media {
	order: -1;
}

.wds-process__media {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(28, 28, 27, 0.1);
}

.wds-process__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 992px) {
	.wds-process__layout {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
		gap: clamp(2rem, 5vw, 4rem);
	}

	.wds-process--no-media .wds-process__layout {
		grid-template-columns: 1fr;
	}

	.wds-process__media {
		order: 0;
		position: sticky;
		top: 6rem;
		max-width: 100%;
		min-width: 0;
	}

	.wds-process__media img {
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: calc(100vh - 8rem);
		object-fit: cover;
	}
}

.wds-process__timeline {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	border-left: 2px solid rgba(217, 59, 46, 0.35);
}

.wds-process__step {
	display: flex;
	gap: 1.25rem;
	padding: 0 0 2rem 1.5rem;
	position: relative;
}

.wds-process__step-marker {
	position: absolute;
	left: -1.05rem;
	top: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--wds-red);
	color: var(--wds-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
}

.wds-process__step-body h3 {
	font-size: 1.25rem;
	margin-bottom: 0.35rem;
}

.wds-process__step-body p {
	margin: 0;
	max-width: 36rem;
}

.wds-stats {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: var(--wds-white);
}

.wds-stats__title {
	text-align: center;
	margin-bottom: 2.5rem;
}

.wds-stats__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (min-width: 992px) {
	.wds-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.wds-stats__figure {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
	color: var(--wds-red);
}

.wds-stats__label {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.wds-stats__desc {
	opacity: 0.65;
	margin: 0;
}

.wds-stats__item--has-bg {
	position: relative;
	overflow: hidden;
	min-height: 220px;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #1a1a19;
}

.wds-stats__item--has-bg .wds-stats__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.wds-stats__item--has-bg .wds-stats__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.wds-stats__item--has-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(18, 18, 17, 0.92) 0%, rgba(18, 18, 17, 0.72) 42%, rgba(18, 18, 17, 0.28) 100%);
	pointer-events: none;
}

.wds-stats__item--has-bg .wds-stats__figure,
.wds-stats__item--has-bg .wds-stats__label,
.wds-stats__item--has-bg .wds-stats__desc {
	position: relative;
	z-index: 2;
}

.wds-stats__item--photo {
	list-style: none;
	margin: 0;
	overflow: hidden;
	min-height: 200px;
}

.wds-stats__item--photo .wds-stats__photo {
	margin: 0;
	height: 100%;
}

.wds-stats__item--photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.wds-testimonials {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--wds-light);
}

.wds-testimonials__container {
	position: relative;
	z-index: 1;
}

.wds-testimonials__title {
	margin-bottom: 2.5rem;
}

.wds-testimonials__title--plain {
	max-width: 42rem;
}

.wds-testimonials__grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.wds-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

.wds-testimonials__item {
	position: relative;
	margin: 0;
	padding: clamp(1.5rem, 3vw, 2rem);
	background: var(--wds-white);
	border-radius: 14px;
	border: 1px solid rgba(60, 60, 59, 0.08);
	box-shadow: 0 20px 50px rgba(60, 60, 59, 0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wds-testimonials__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 64px rgba(60, 60, 59, 0.1);
	border-color: rgba(217, 59, 46, 0.15);
}

.wds-testimonials__quote-mark {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	font-size: clamp(3rem, 6vw, 4.5rem);
	line-height: 1;
	font-family: Georgia, 'Times New Roman', serif;
	color: var(--wds-red);
	opacity: 0.12;
	pointer-events: none;
	user-select: none;
}

.wds-testimonials__quote {
	flex: 1;
	font-size: 1.0625rem;
	line-height: 1.65;
	margin-bottom: 1.5rem;
	padding-right: 1.5rem;
}

.wds-testimonials__quote p {
	margin: 0;
	color: rgba(60, 60, 59, 0.92);
}

.wds-testimonials__footer {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(60, 60, 59, 0.08);
	background: transparent;
	color: inherit;
	margin-bottom: 0;
}

.wds-testimonials__avatar {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--wds-red);
	background: rgba(217, 59, 46, 0.1);
	border: 1px solid rgba(217, 59, 46, 0.18);
}

.wds-testimonials__avatar--photo {
	padding: 0;
	background: var(--wds-white);
	overflow: hidden;
}

.wds-testimonials__avatar--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.wds-testimonials__cite {
	font-style: normal;
	min-width: 0;
}

.wds-testimonials__name {
	display: block;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.3;
	color: var(--wds-dark);
}

.wds-testimonials__role {
	display: block;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(60, 60, 59, 0.72);
	margin-top: 0.15rem;
}

/* Homepage testimonials — editorial bento */
.wds-testimonials--home {
	position: relative;
	overflow: hidden;
	background: var(--wds-white);
}

.wds-testimonials--home .wds-testimonials__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(217, 59, 46, 0.07), transparent 55%),
		radial-gradient(ellipse 50% 40% at 0% 100%, rgba(60, 60, 59, 0.05), transparent 50%);
	pointer-events: none;
}

.wds-testimonials--home .wds-testimonials__head {
	display: grid;
	gap: 1rem 2rem;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 992px) {
	.wds-testimonials--home .wds-testimonials__head {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		align-items: end;
	}

	.wds-testimonials--home .wds-testimonials__head-main {
		grid-column: 1;
		grid-row: 1;
	}

	.wds-testimonials--home .wds-testimonials__lede {
		grid-column: 1;
		grid-row: 2;
		max-width: 36rem;
		margin: 0;
	}

	.wds-testimonials--home .wds-testimonials__archive-link {
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: center;
		justify-self: end;
	}
}

.wds-testimonials--home .wds-testimonials__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wds-red);
}

.wds-testimonials--home .wds-testimonials__title {
	margin: 0;
	max-width: 14em;
	line-height: 1.12;
	text-wrap: balance;
}

.wds-testimonials--home .wds-testimonials__lede {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	opacity: 0.78;
}

.wds-testimonials__archive-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	text-decoration: none;
	color: inherit;
	border-bottom: 2px solid rgba(217, 59, 46, 0.35);
	padding-bottom: 0.15rem;
	transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.wds-testimonials__archive-link:hover {
	color: var(--wds-red);
	border-color: var(--wds-red);
	gap: 0.55rem;
}

@media (min-width: 992px) {
	.wds-testimonials--home .wds-testimonials__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.35rem;
	}

	.wds-testimonials--home .wds-testimonials__item {
		min-height: 100%;
	}
}

.wds-testimonials--home .wds-testimonials__item {
	border-left: 3px solid rgba(217, 59, 46, 0.35);
}

.wds-testimonials--home .wds-testimonials__item:hover {
	border-left-color: var(--wds-red);
}

.wds-testimonials__foot {
	margin: clamp(2rem, 4vw, 2.75rem) 0 0;
	text-align: center;
}

.wds-testimonials__foot-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	color: var(--wds-dark);
	background: var(--wds-light);
	border: 1px solid rgba(60, 60, 59, 0.1);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wds-testimonials__foot-link:hover {
	background: var(--wds-white);
	border-color: rgba(217, 59, 46, 0.35);
	color: var(--wds-red);
	transform: translateY(-2px);
}

.wds-testimonials-page-grid .wds-testimonials__grid {
	gap: 1.25rem;
}

@media (min-width: 1200px) {
	.wds-testimonials-page-grid .wds-testimonials__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wds-home-blog {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--wds-light, #f5f5f3);
}

.wds-home-blog__header {
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.wds-home-blog__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wds-red);
}

.wds-home-blog__intro {
	max-width: 36rem;
	margin-bottom: 0;
	color: rgba(60, 60, 59, 0.78);
}

.wds-home-blog__header-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 1rem;
}

@media (min-width: 992px) {
	.wds-home-blog__header-actions {
		justify-content: flex-end;
		margin-top: 0;
		padding-bottom: 0.35rem;
	}
}

.wds-home-blog__archive-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	color: var(--wds-red);
	text-decoration: none;
	transition: gap 0.25s ease;
}

.wds-home-blog__archive-link:hover {
	text-decoration: none;
	color: var(--wds-red);
	gap: 0.55rem;
}

.wds-home-blog__grid {
	margin-top: 0;
}

.wds-home-blog .wds-blog-card__title {
	font-family: "Newsreader", Georgia, serif;
	font-size: 1.3rem;
	line-height: 1.25;
	font-weight: 500;
	margin: 0 0 0.65rem;
	letter-spacing: -0.02em;
}

.wds-home-blog__empty {
	margin: 0;
	font-size: 1.05rem;
	color: rgba(60, 60, 59, 0.75);
}

.wds-local {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--wds-white);
}

.wds-local__areas {
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 1.5rem 0 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.wds-local__areas li {
	list-style: none;
	list-style-type: none;
	background: var(--wds-light);
	padding: 0.35rem 0.75rem;
	padding-bottom: 0.35rem;
	border-radius: 999px;
	font-size: 0.875rem;
}

.wds-local__image-wrap {
	border-radius: 12px;
	overflow: hidden;
	background: var(--wds-light);
	min-height: 240px;
}

.wds-local__image {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

.wds-final-cta {
	padding: 0;
	background-image: url("https://gunshopwebdesign.co.uk/wp-content/uploads/2026/04/design.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.wds-final-cta__inner {
	color: var(--wds-dark);
	padding: clamp(4rem, 10vw, 6rem) 0;
	position: relative;
	overflow: hidden;
}

.wds-final-cta__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.84);
	pointer-events: none;
	z-index: 0;
}

.wds-final-cta__inner > .container {
	position: relative;
	z-index: 1;
}

.wds-final-cta__decorative {
	display: none;
}

.wds-final-cta__title {
	color: var(--wds-dark);
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
	position: relative;
}

.wds-final-cta__text {
	color: var(--wds-dark);
	font-size: 1.125rem;
	max-width: 32rem;
	margin: 0 auto 2rem;
	opacity: 1;
	position: relative;
	line-height: 1.55;
}

.wds-final-cta__actions {
	margin-bottom: 1.5rem;
	position: relative;
}

.wds-btn-light {
	background: var(--wds-white) !important;
	color: var(--wds-red) !important;
	border-color: var(--wds-white) !important;
}

.wds-final-cta__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	position: relative;
}

.wds-final-cta__contact a {
	color: var(--wds-red);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

body.wds-has-hero header.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	transition: background-color 0.35s ease, box-shadow 0.35s ease;
	z-index: 1000;
}

body.wds-has-hero header.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 24px rgba(60, 60, 59, 0.08);
}

header.site-header .header-cta {
	margin-left: 1rem;
	white-space: nowrap;
}

@media (min-width: 1200px) {
	header.site-header .header-nav-wrap {
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: flex-end;
	}
}

@media (max-width: 1199px) {
	header.site-header .wds-nav-desktop .header-cta {
		display: none;
	}
}

/* —— Premium layer (2026 editorial) —— */

body.wds-home {
	font-family: "Instrument Sans", "Source Sans Pro", sans-serif;
	color: var(--wds-dark);
	-webkit-font-smoothing: antialiased;
}

body.wds-home h1,
body.wds-home h2,
body.wds-home h3,
body.wds-home .wds-split-target {
	font-family: "Newsreader", "Instrument Sans", serif;
	font-variation-settings: "opsz" 24;
	letter-spacing: -0.03em;
}

.wds-split-line {
	overflow: hidden;
}

.wds-split-target .word {
	display: inline-block;
	will-change: transform, opacity;
}

.wds-hero__title {
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.wds-hero__title .wds-heading-line {
	display: block;
	position: relative;
	max-width: 100%;
	white-space: normal;
}

.wds-hero__title .wds-type-word {
	display: inline-block;
	white-space: nowrap;
}

.wds-hero__title .wds-type-char {
	display: inline-block;
	opacity: 0;
}

.wds-hero__title .wds-type-space {
	display: inline;
}

.wds-hero__title.is-typewriter-done .wds-type-char {
	opacity: 1;
}

.wds-hero__title .text-highlight {
	display: inline;
}

.wds-hero__title .wds-typewriter-cursor {
	display: inline-block;
	width: 2px;
	height: 0.92em;
	margin-left: 1px;
	vertical-align: -0.08em;
	background: var(--wds-red);
	opacity: 0;
}

.wds-hero__title .wds-heading-line.is-typing .wds-typewriter-cursor {
	opacity: 1;
	animation: wds-typewriter-blink 0.75s step-end infinite;
}

.wds-hero__title .wds-typewriter-cursor.is-done {
	opacity: 0;
	animation: none;
}

@keyframes wds-typewriter-blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.wds-section-head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
	max-width: 52rem;
}

@media (min-width: 992px) {
	.wds-section-head {
		grid-template-columns: 1.1fr 1fr;
		align-items: end;
		max-width: none;
	}
}

.wds-hero {
	min-height: min(100svh, 900px);
	padding-top: clamp(6rem, 12vh, 8rem);
	background: #fafaf8;
}

.wds-hero__title {
	max-width: none;
	font-size: clamp(2.35rem, 4vw, 4.25rem);
	font-weight: 500;
}

.wds-hero__intro {
	max-width: 28rem;
}

.wds-btn-primary,
.btn.wds-btn-primary {
	border-radius: 2px !important;
	padding: 0.95em 1.5em !important;
	font-weight: 600;
	letter-spacing: 0.01em;
	box-shadow: none !important;
}

.btn.btn-outline.wds-btn-secondary {
	border-radius: 2px;
	background: transparent;
	border: 1px solid rgba(60, 60, 59, 0.35);
	color: var(--wds-dark);
	padding: 0.95em 1.5em;
	font-weight: 600;
}

.btn.btn-outline.wds-btn-secondary:hover {
	background: var(--wds-dark) !important;
	border-color: var(--wds-dark);
	color: #fff !important;
}

body.wds-has-hero header.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(60, 60, 59, 0.08);
}

.wds-intro {
	padding: clamp(5rem, 14vw, 10rem) 0;
}

.wds-intro__heading {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.08;
	max-width: 22em;
	text-wrap: balance;
}

/* Services bento */
.wds-services__bento {
	display: none;
}

@media (min-width: 992px) {
	.wds-services__bento {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
		align-items: stretch;
	}

	.wds-service-card {
		grid-column: span 1;
		min-height: 240px;
		position: relative;
		border: 1px solid rgba(60, 60, 59, 0.1);
		background: rgba(255, 255, 255, 0.55);
		transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
		overflow: hidden;
	}

	.wds-service-card--wide {
		grid-column: span 2;
	}

	.wds-service-card.is-hovered {
		border-color: rgba(217, 59, 46, 0.45);
		background: #fff;
		transform: translateY(-4px);
		z-index: 2;
	}

	.wds-service-card__inner {
		padding: 1.75rem;
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.wds-service-card__number {
		font-size: 0.75rem;
		font-weight: 700;
		color: var(--wds-red);
		letter-spacing: 0.12em;
		margin-bottom: 1rem;
	}

	.wds-service-card__title {
		font-family: "Instrument Sans", sans-serif;
		font-size: 1.35rem;
		margin-bottom: 0.75rem;
	}

	.wds-service-card__desc {
		margin: 0;
		opacity: 0.78;
		max-width: 36ch;
	}

	.wds-service-card__link {
		margin-top: auto;
		padding-top: 1.25rem;
		font-weight: 600;
		color: var(--wds-red);
		opacity: 0;
		transform: translateY(8px);
		transition: opacity 0.35s ease, transform 0.35s ease;
	}

	.wds-service-card.is-hovered .wds-service-card__link {
		opacity: 1;
		transform: translateY(0);
	}

	.wds-service-card__media {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 42%;
		opacity: 0;
		transform: scale(1.04);
		transition: opacity 0.45s ease, transform 0.45s ease;
		pointer-events: none;
	}

	.wds-service-card.is-hovered .wds-service-card__media {
		opacity: 0.95;
		transform: scale(1);
	}

	.wds-service-card__img {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 6px 0 0 0;
	}

	.wds-service-card--has-bg .wds-service-card__media {
		inset: 0;
		width: 100%;
		height: 100%;
		opacity: 1;
		transform: none;
		z-index: 0;
	}

	.wds-service-card--has-bg .wds-service-card__img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center right;
		border-radius: 0;
		transform: scale(1.04);
		transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.wds-service-card--has-bg.is-hovered .wds-service-card__img {
		transform: scale(1);
	}

	.wds-service-card--has-bg .wds-service-card__inner::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.42) 68%, rgba(255, 255, 255, 0.18) 100%);
		pointer-events: none;
		z-index: 1;
	}

	.wds-service-card--has-bg .wds-service-card__inner {
		position: relative;
		z-index: 1;
		background: transparent;
	}

	.wds-service-card--has-bg .wds-service-card__number,
	.wds-service-card--has-bg .wds-service-card__title,
	.wds-service-card--has-bg .wds-service-card__desc,
	.wds-service-card--has-bg .wds-service-card__link {
		position: relative;
		z-index: 2;
	}
}

/* Stats bento */
.wds-stats__grid {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.wds-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.wds-stats__item {
		border: 1px solid rgba(60, 60, 59, 0.08);
		padding: 2rem;
		background: var(--wds-light);
		min-height: 180px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.wds-stats__item:first-child {
		grid-column: span 2;
		background: linear-gradient(135deg, rgba(217, 59, 46, 0.08), rgba(245, 245, 243, 1));
	}

	.wds-stats__item:first-child.wds-stats__item--has-bg {
		background: #1a1a19;
	}

	.wds-stats__item--photo {
		padding: 0;
		min-height: 180px;
		background: transparent;
		border: 0;
		overflow: hidden;
		justify-content: stretch;
	}

	.wds-stats__item--photo .wds-stats__photo {
		margin: 0;
		width: 100%;
		height: 100%;
	}

	.wds-stats__item--photo img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

@media (min-width: 1200px) {
	.wds-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.wds-stats__item:first-child {
		grid-column: span 2;
		grid-row: span 2;
		min-height: 100%;
	}
}

html.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: reduce) {
	html.lenis.lenis-smooth {
		scroll-behavior: auto !important;
	}

	.wds-service-card,
	.wds-work__card,
	.wds-testimonials__item {
		transition: none !important;
	}
}

/* —— Homepage visual lift (editorial + depth) —— */

.wds-hero__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 70% at 85% 15%, rgba(217, 59, 46, 0.14), transparent 55%),
		radial-gradient(ellipse 60% 50% at 10% 90%, rgba(60, 60, 59, 0.06), transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 70%);
	pointer-events: none;
}

.wds-hero__accent--secondary {
	top: auto;
	bottom: 8%;
	right: 18%;
	width: min(280px, 28vw);
	height: min(280px, 28vw);
	opacity: 0.06;
	background: var(--wds-dark);
	border-radius: 50%;
}

.wds-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.85rem;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(217, 59, 46, 0.22);
	border-radius: 999px;
	box-shadow: 0 8px 32px rgba(60, 60, 59, 0.06);
}

.wds-hero__trust-band {
	margin-top: 0.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(60, 60, 59, 0.1);
}

.wds-hero__foot {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: clamp(1.5rem, 3vw, 2rem);
	border-top: 1px solid rgba(60, 60, 59, 0.1);
}

.wds-hero__foot .wds-hero__label {
	margin-bottom: 1rem;
}

.wds-hero__trust {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.wds-hero__trust li,
.wds-hero__trust-card {
	list-style: none;
	list-style-type: none;
}

@media (min-width: 992px) {
	.wds-hero__trust {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
	}
}

.wds-hero__trust-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem 1.15rem;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(60, 60, 59, 0.08);
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(60, 60, 59, 0.06);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.wds-hero__trust-value {
	font-family: "Newsreader", serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 600;
	color: var(--wds-dark);
	line-height: 1;
}

.wds-hero__trust-label {
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(60, 60, 59, 0.72);
	max-width: none;
}

.wds-hero__visual {
	transform-style: preserve-3d;
}

.wds-hero__showcase {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0.5rem 0 1.5rem;
}

.wds-hero__figure {
	position: relative;
	z-index: 1;
	margin: 0;
}

.wds-hero__showcase .wds-hero__mockup {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top center;
	border-radius: 16px;
	border: 1px solid rgba(60, 60, 59, 0.1);
	box-shadow:
		0 4px 0 rgba(60, 60, 59, 0.04),
		0 40px 100px rgba(60, 60, 59, 0.16);
}

@media (min-width: 992px) {
	.wds-hero__visual {
		width: 100%;
		max-width: 760px;
		margin-top: 0;
		margin-right: 0;
	}

	.wds-hero__showcase {
		width: 100%;
		margin-left: auto;
		margin-right: 0;
		padding: 0.5rem 0 1.5rem;
	}

	.wds-hero__showcase .wds-hero__mockup {
		aspect-ratio: 5 / 4;
		min-height: clamp(480px, 58vh, 620px);
	}
}

@media (min-width: 1200px) {
	.wds-hero__visual {
		max-width: 820px;
	}

	.wds-hero__showcase {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.wds-hero__visual {
		margin-top: 1.75rem;
		max-width: none;
	}

	.wds-hero__showcase {
		width: 100%;
		max-width: none;
		padding: 0 0 1.5rem;
	}

	.wds-hero__showcase-glow {
		inset: 5% 0 10%;
	}
}

.wds-hero__showcase-glow {
	position: absolute;
	inset: 10% 5% 15%;
	background: radial-gradient(circle, rgba(217, 59, 46, 0.22), transparent 65%);
	filter: blur(24px);
	pointer-events: none;
	z-index: 0;
}

.wds-hero__browser {
	position: relative;
	z-index: 1;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(60, 60, 59, 0.12);
	box-shadow:
		0 4px 0 rgba(60, 60, 59, 0.04),
		0 32px 80px rgba(60, 60, 59, 0.14);
}

.wds-hero__browser-bar {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 0.85rem;
	background: linear-gradient(180deg, #f8f8f6 0%, #efefeb 100%);
	border-bottom: 1px solid rgba(60, 60, 59, 0.08);
}

.wds-hero__browser-bar span {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: rgba(60, 60, 59, 0.15);
}

.wds-hero__browser-bar span:first-child {
	background: rgba(217, 59, 46, 0.75);
}

.wds-hero__browser-screen {
	padding: 1.25rem;
	background: linear-gradient(165deg, #fafaf8 0%, #fff 45%, #f3f3f0 100%);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.wds-hero__browser-hero-block {
	height: 120px;
	border-radius: 10px;
	background:
		linear-gradient(135deg, rgba(217, 59, 46, 0.85) 0%, rgba(217, 59, 46, 0.55) 40%, rgba(60, 60, 59, 0.08) 100%);
	position: relative;
	overflow: hidden;
}

.wds-hero__browser-hero-block::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transform: translateX(-100%);
	animation: wds-shimmer 4s ease-in-out infinite;
}

@keyframes wds-shimmer {
	0%,
	40% {
		transform: translateX(-100%);
	}
	60%,
	100% {
		transform: translateX(100%);
	}
}

.wds-hero__browser-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	flex: 1;
}

.wds-hero__browser-row span {
	border-radius: 8px;
	background: rgba(60, 60, 59, 0.07);
	min-height: 72px;
}

.wds-hero__browser-row span:nth-child(2) {
	background: rgba(217, 59, 46, 0.1);
}

.wds-hero__chips {
	list-style: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}

.wds-hero__chips li,
.wds-hero__float {
	list-style: none;
	list-style-type: none;
}

.wds-hero__float {
	position: absolute;
	padding: 0.45rem 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wds-dark);
	background: #fff;
	border: 1px solid rgba(60, 60, 59, 0.1);
	border-radius: 999px;
	box-shadow: 0 12px 32px rgba(60, 60, 59, 0.12);
}

.wds-hero__float:nth-child(1) {
	top: 6%;
	right: 4%;
}

.wds-hero__float:nth-child(2) {
	bottom: 28%;
	left: 4%;
}

.wds-hero__float:nth-child(3) {
	bottom: 4%;
	right: 8%;
	background: var(--wds-red);
	color: #fff;
	border-color: transparent;
}

.wds-intro__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 992px) {
	.wds-intro__layout {
		grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr);
		gap: clamp(2rem, 5vw, 4rem);
	}
}

.wds-intro__aside {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding-top: 0.5rem;
	max-width: 22rem;
}

.wds-intro__mark {
	display: none;
	width: 3px;
	height: 72px;
	background: linear-gradient(180deg, var(--wds-red), rgba(217, 59, 46, 0.15));
	border-radius: 2px;
}

.wds-intro__aside-text {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(60, 60, 59, 0.55);
}

.wds-intro__aside-image {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(28, 28, 27, 0.12);
}

.wds-intro__aside-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 992px) {
	.wds-intro__aside {
		max-width: none;
	}

	.wds-intro__mark {
		display: block;
	}
}

.wds-intro {
	background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
}

.wds-services {
	position: relative;
	background: #f0f0ec;
}

.wds-services::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(60, 60, 59, 0.07) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.35;
	pointer-events: none;
}

.wds-services > .container {
	position: relative;
	z-index: 1;
}

.wds-services__title {
	font-size: clamp(2.25rem, 4vw, 3.75rem);
}

a.wds-service-card {
	text-decoration: none;
	color: inherit;
	display: block;
}

.wds-service-card--linked {
	cursor: pointer;
}

@media (min-width: 992px) {
	.wds-service-card {
		box-shadow: 0 8px 32px rgba(60, 60, 59, 0.04);
	}

	.wds-service-card--wide {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 100%);
	}

	.wds-service-card--has-bg {
		background: #fff;
	}

	.wds-service-card--wide::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, var(--wds-red), rgba(217, 59, 46, 0.2));
		opacity: 0.85;
		z-index: 3;
	}

	.wds-service-card.is-hovered {
		box-shadow: 0 24px 56px rgba(60, 60, 59, 0.12);
	}
}

.wds-section-head .wds-services__intro {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(60, 60, 59, 0.82);
}

.wds-process {
	background: #fff;
}

.wds-process__timeline {
	border-left-color: rgba(217, 59, 46, 0.2);
}

.wds-stats {
	background: var(--wds-dark);
	color: #fff;
}

.wds-stats__title {
	color: #fff;
}

.wds-stats__figure {
	color: #fff;
}

.wds-stats__label {
	color: rgba(255, 255, 255, 0.95);
}

.wds-stats__desc {
	color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
	.wds-stats__item {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(255, 255, 255, 0.1);
	}

	.wds-stats__item:first-child {
		background: linear-gradient(135deg, rgba(217, 59, 46, 0.35), rgba(255, 255, 255, 0.06));
	}

	.wds-stats__item:first-child.wds-stats__item--has-bg {
		background: #1a1a19;
	}

	.wds-stats__item--photo {
		background: transparent;
		border: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wds-hero__browser-hero-block::after {
		animation: none;
	}
}
