.sifa-projects {
	--sifa-project-gold: #b39254;
	--sifa-project-ink: #11191e;
	--sifa-project-gap: 30px;
	position: relative;
	width: 100%;
	color: var(--sifa-project-ink);
}

.sifa-projects *,
.sifa-projects *::before,
.sifa-projects *::after {
	box-sizing: border-box;
}

.sifa-projects__viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
}

.sifa-projects__viewport.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.sifa-projects__track {
	display: flex;
	align-items: stretch;
	gap: var(--sifa-project-gap);
	transform: translate3d(0, 0, 0);
	transition: transform 0.35s ease;
	will-change: transform;
}

.sifa-projects__viewport.is-dragging .sifa-projects__track {
	transition: none;
}

.sifa-projects--carousel .sifa-project-card {
	flex: 0 0 calc((100% - (var(--sifa-project-gap) * 2)) / 3);
}

.sifa-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 54px var(--sifa-project-gap);
}

.sifa-project-card {
	min-width: 0;
	background: #fff;
}

button.sifa-project-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	margin: 0;
	padding: 0 !important;
	overflow: hidden;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: inherit !important;
	box-shadow: none !important;
	cursor: pointer;
}

.sifa-project-card button.sifa-project-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform 0.35s ease;
}

.sifa-project-card__media:hover img,
.sifa-project-card__media:focus-visible img {
	transform: scale(1.04);
}

.sifa-project-card__media:focus-visible {
	outline: 2px solid var(--sifa-project-gold);
	outline-offset: 3px;
}

.sifa-project-card__tag {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	max-width: calc(100% - 36px);
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--sifa-project-ink);
	font-family: Manrope, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.04em;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.sifa-project-card__media:hover .sifa-project-card__tag,
.sifa-project-card__media:focus-visible .sifa-project-card__tag {
	opacity: 1;
	transform: translateY(0);
}

.sifa-project-card__content {
	padding-top: 16px;
}

.sifa-project-card__title {
	margin: 0 0 8px;
	color: var(--sifa-project-ink);
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(25px, 2vw, 31px);
	font-weight: 500;
	line-height: 1.08;
}

.sifa-project-card__location {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	color: #20282d;
	font-family: Manrope, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.sifa-project-card__location span {
	min-width: 0;
}

.sifa-project-card__location i {
	flex: 1 1 40px;
	min-width: 28px;
	max-width: 44px;
	border-top: 1px solid var(--sifa-project-gold);
}

.sifa-projects .sifa-projects__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 10px;
	min-height: 9px;
	margin-top: 42px;
	padding: 0 !important;
}

.sifa-projects__pagination[hidden] {
	display: none;
}

.sifa-projects button.sifa-projects__dot {
	display: block !important;
	flex: 0 0 9px !important;
	width: 9px !important;
	min-width: 9px !important;
	max-width: 9px !important;
	height: 9px !important;
	min-height: 9px !important;
	max-height: 9px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(179, 146, 84, 0.65) !important;
	border-radius: 50% !important;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer;
}

.sifa-projects button.sifa-projects__dot.is-active {
	border-color: var(--sifa-project-gold) !important;
	background: var(--sifa-project-gold) !important;
}

.sifa-projects-viewer {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.sifa-projects-viewer.is-open {
	display: flex;
}

.sifa-projects-viewer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(8, 14, 18, 0.95);
}

.sifa-projects-viewer__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	width: min(1240px, calc(100vw - 120px));
	max-height: calc(100vh - 64px);
	overflow: auto;
	background: #11191e;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.sifa-projects-viewer__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: min(72vh, 760px);
	padding: 24px;
	background: #090e11;
}

.sifa-projects-viewer__image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: min(72vh, 760px);
	object-fit: contain;
}

.sifa-projects-viewer__details {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px 34px;
	color: #fff;
}

.sifa-projects-viewer__tag {
	align-self: flex-start;
	margin-bottom: 22px;
	padding: 9px 12px;
	background: #fff;
	color: var(--sifa-project-ink);
	font-family: Manrope, sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sifa-projects .sifa-projects-viewer__title {
	margin: 0 0 12px;
	color: #fff !important;
	font-family: "Cormorant Garamond", serif;
	font-size: 34px;
	font-weight: 500;
	line-height: 1.05;
}

.sifa-projects .sifa-projects-viewer__location {
	margin: 0 0 22px;
	color: #d1b578 !important;
	font-family: Manrope, sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.sifa-projects .sifa-projects-viewer__description {
	margin: 0;
	color: rgba(255, 255, 255, 0.82) !important;
	font-family: Manrope, sans-serif;
	font-size: 14px;
	line-height: 1.75;
}

.sifa-projects button.sifa-projects-viewer__close,
.sifa-projects button.sifa-projects-viewer__previous,
.sifa-projects button.sifa-projects-viewer__next {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: rgba(255, 255, 255, 0.96) !important;
	color: var(--sifa-project-ink) !important;
	box-shadow: none !important;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.sifa-projects button.sifa-projects-viewer__close {
	top: 14px;
	right: 14px;
}

.sifa-projects button.sifa-projects-viewer__previous,
.sifa-projects button.sifa-projects-viewer__next {
	top: 50%;
	transform: translateY(-50%);
}

.sifa-projects button.sifa-projects-viewer__previous {
	left: 14px;
}

.sifa-projects button.sifa-projects-viewer__next {
	right: 314px;
}

html.sifa-projects-viewer-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.sifa-projects {
		--sifa-project-gap: 24px;
	}

	.sifa-projects--carousel .sifa-project-card {
		flex-basis: calc((100% - var(--sifa-project-gap)) / 2);
	}

	.sifa-projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sifa-project-card__tag {
		opacity: 1;
		transform: none;
	}

	.sifa-projects-viewer__dialog {
		grid-template-columns: minmax(0, 1fr) 260px;
		width: calc(100vw - 64px);
	}

	.sifa-projects button.sifa-projects-viewer__next {
		right: 274px;
	}
}

@media (max-width: 767px) {
	.sifa-projects {
		--sifa-project-gap: 18px;
	}

	.sifa-projects--carousel .sifa-project-card {
		flex-basis: 100%;
	}

	.sifa-projects__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.sifa-project-card__title {
		font-size: 27px;
	}

	.sifa-projects-viewer {
		padding: 14px;
	}

	.sifa-projects-viewer__dialog {
		display: block;
		width: 100%;
		max-height: calc(100vh - 28px);
	}

	.sifa-projects-viewer__image-wrap {
		min-height: 52vh;
		padding: 52px 12px 16px;
	}

	.sifa-projects-viewer__image {
		max-height: 52vh;
	}

	.sifa-projects-viewer__details {
		padding: 24px 22px 30px;
	}

	.sifa-projects-viewer__tag {
		margin-bottom: 14px;
	}

	.sifa-projects-viewer__title {
		font-size: 29px;
	}

	.sifa-projects button.sifa-projects-viewer__previous,
	.sifa-projects button.sifa-projects-viewer__next {
		top: 30vh;
		width: 42px;
		height: 42px;
	}

	.sifa-projects button.sifa-projects-viewer__previous {
		left: 10px;
	}

	.sifa-projects button.sifa-projects-viewer__next {
		right: 10px;
	}
}

@media (hover: none), (pointer: coarse) {
	.sifa-project-card__tag {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sifa-projects__track,
	.sifa-project-card__media img,
	.sifa-project-card__tag {
		transition: none;
	}
}

/* Global site polish for the remaining SIFA UI and interaction fixes. */
:root {
	--sifa-polish-gold: #bd9a50;
	--sifa-polish-ink: #17242b;
	--sifa-polish-black: #090402;
}

html {
	scroll-behavior: smooth;
}

#testimonial {
	scroll-margin-top: 112px;
}

.elementor-element-269d577 .elementor-button,
.elementor-element-1cb6098 .elementor-button,
.elementor-element-3e5a262 .elementor-button {
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease !important;
}

.elementor-element-269d577 .elementor-button:hover,
.elementor-element-269d577 .elementor-button:focus-visible {
	border-color: var(--sifa-polish-gold) !important;
	background: var(--sifa-polish-gold) !important;
	color: #fff !important;
}

.elementor-element-1cb6098 .elementor-button:hover,
.elementor-element-1cb6098 .elementor-button:focus-visible,
.elementor-element-3e5a262 .elementor-button:hover,
.elementor-element-3e5a262 .elementor-button:focus-visible {
	border-color: var(--sifa-polish-ink) !important;
	background: var(--sifa-polish-ink) !important;
	color: #fff !important;
}

.sifa-home-service-card {
	cursor: pointer;
	transition: border-color 0.3s ease, transform 0.3s ease !important;
}

.sifa-home-service-card:hover,
.sifa-home-service-card:focus-visible,
.sifa-home-service-card:focus-within {
	border-color: var(--sifa-polish-gold) !important;
	transform: translateY(-3px);
}

.sifa-home-service-card:focus-visible {
	outline: 2px solid var(--sifa-polish-gold);
	outline-offset: 3px;
}

.sifa-home-service-card .elementor-button {
	border: 0 !important;
	box-shadow: none !important;
}

.elementor-element-e8aba98 .elementor-element-b4292ee {
	padding: 0 !important;
}

.elementor-element-e8aba98 .elementor-element-daa0e84,
.elementor-element-e8aba98 .elementor-element-daa0e84 .elementor-widget-container,
.elementor-element-e8aba98 .elementor-element-daa0e84 .elementor-heading-title {
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.elementor-70 .elementor-element-sifa70a {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.elementor-70 .elementor-element-sifa70b {
	width: min(1400px, calc(100% - 40px)) !important;
	max-width: 1400px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding: 0 !important;
}

.elementor-70 .elementor-element-sifa70b > .e-con-inner {
	width: 100% !important;
	max-width: 1400px !important;
	padding: 0 !important;
}

.elementor-element-9ba3ae9 .swiper-wrapper {
	align-items: stretch !important;
}

.elementor-element-9ba3ae9 .swiper-slide {
	height: auto !important;
}

.elementor-element-9ba3ae9 .swiper-slide > .e-con {
	height: 100% !important;
	min-height: 0 !important;
	padding-bottom: 24px !important;
}

.elementor-element-9ba3ae9 .swiper-slide .elementor-widget-text-editor {
	margin-top: 54px !important;
}

.elementor-element-9ba3ae9 .swiper-pagination {
	right: 0 !important;
	left: 0 !important;
	width: 100% !important;
	text-align: center !important;
}

.elementor-element-f1310a7 {
	overflow-x: clip !important;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 {
	width: min(1400px, calc(100% - 40px)) !important;
	max-width: 1400px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 .elementor-widget-image,
.elementor-element-f1310a7 .elementor-element-a9d3aa8 .elementor-widget-container,
.elementor-element-f1310a7 .elementor-element-a9d3aa8 a {
	position: relative !important;
	display: block !important;
	height: 100% !important;
	overflow: hidden !important;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 a::after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: rgba(9, 4, 2, 0.38);
	opacity: 0;
	transition: opacity 0.32s ease;
	pointer-events: none;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 a::before {
	content: "";
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 38px;
	height: 38px;
	background: center / contain no-repeat url("http://sifadesign.com/wp-content/uploads/2026/07/instagram-svgrepo-com.svg");
	filter: brightness(0) invert(1);
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.92);
	transition: opacity 0.32s ease, transform 0.32s ease;
	pointer-events: none;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 a:hover::after,
.elementor-element-f1310a7 .elementor-element-a9d3aa8 a:focus-visible::after,
.elementor-element-f1310a7 .elementor-element-a9d3aa8 a:hover::before,
.elementor-element-f1310a7 .elementor-element-a9d3aa8 a:focus-visible::before {
	opacity: 1;
}

.elementor-element-f1310a7 .elementor-element-a9d3aa8 a:hover::before,
.elementor-element-f1310a7 .elementor-element-a9d3aa8 a:focus-visible::before {
	transform: translate(-50%, -50%) scale(1);
}

footer .sifa-footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: #171c1f;
	transition: color 0.25s ease;
}

footer .sifa-footer-social-icon:hover,
footer .sifa-footer-social-icon:focus-visible {
	color: var(--sifa-polish-gold);
}

footer .sifa-footer-social-icon svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: currentColor;
}

footer .elementor-element-bd4de0d a,
footer .elementor-element-5bfa901 a {
	position: relative;
	display: inline-block;
	text-decoration: none !important;
}

footer .elementor-element-bd4de0d a::after,
footer .elementor-element-5bfa901 a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -4px;
	left: 0;
	height: 1px;
	background: var(--sifa-polish-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}

footer .elementor-element-bd4de0d a:hover::after,
footer .elementor-element-bd4de0d a:focus-visible::after,
footer .elementor-element-5bfa901 a:hover::after,
footer .elementor-element-5bfa901 a:focus-visible::after {
	transform: scaleX(1);
}

footer .elementor-element-12e80d0 {
	padding-bottom: 44px !important;
}

footer .elementor-element-0b81516,
footer .elementor-element-fa9141a,
footer .elementor-element-a8adeaf {
	width: min(1400px, calc(100% - 40px)) !important;
	max-width: 1400px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

footer .elementor-element-fa9141a {
	margin-top: 68px !important;
}

footer .elementor-element-a8adeaf {
	margin-top: 50px !important;
}

.elementor-element-3b102cf {
	width: min(1400px, calc(100% - 40px)) !important;
	max-width: 1400px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	overflow: hidden !important;
}

.elementor-element-3b102cf > .e-con-inner {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
}

.elementor-element-3b102cf .sifa-contact-info {
	flex: 0 0 46% !important;
	width: 46% !important;
	padding: clamp(58px, 6vw, 92px) !important;
}

.elementor-element-3b102cf .sifa-contact-visual {
	flex: 1 1 54% !important;
	width: 54% !important;
	min-height: 880px !important;
	background-position: center !important;
	background-size: cover !important;
}

.elementor-element-3b102cf .sifa-contact-title .elementor-heading-title {
	font-family: "Cormorant Garamond", serif !important;
	font-size: clamp(58px, 5vw, 72px) !important;
	font-weight: 600 !important;
	line-height: 1.02 !important;
	letter-spacing: -0.025em !important;
	color: var(--sifa-polish-ink) !important;
}

.elementor-element-3b102cf .sifa-contact-info,
.elementor-element-3b102cf .sifa-contact-info p,
.elementor-element-3b102cf .sifa-contact-info a,
.elementor-element-3b102cf .sifa-contact-label .elementor-heading-title,
.elementor-element-3b102cf .sifa-panel-intro,
.elementor-element-3b102cf .sifa-panel-intro p,
.elementor-element-3b102cf .elementor-field-label,
.elementor-element-3b102cf .elementor-field {
	font-family: Manrope, sans-serif !important;
}

.elementor-element-3b102cf .sifa-contact-panel {
	width: min(640px, calc(100% - 72px)) !important;
	max-width: 640px !important;
	margin: auto !important;
}

.elementor-element-3b102cf form.elementor-form button.elementor-button[type="submit"] {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 174px !important;
	min-height: 50px !important;
	padding: 16px 28px !important;
	border: 1px solid var(--sifa-polish-ink) !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: var(--sifa-polish-ink) !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease !important;
}

.elementor-element-3b102cf form.elementor-form button.elementor-button[type="submit"]:hover,
.elementor-element-3b102cf form.elementor-form button.elementor-button[type="submit"]:focus-visible {
	border-color: var(--sifa-polish-ink) !important;
	background: var(--sifa-polish-ink) !important;
	color: #fff !important;
}

.elementor-element-3b102cf form.elementor-form button.elementor-button[type="submit"] .elementor-button-text {
	color: inherit !important;
}

@media (max-width: 1024px) {
	#testimonial {
		scroll-margin-top: 92px;
	}

	.elementor-element-3b102cf {
		flex-direction: column !important;
	}

	.elementor-element-3b102cf .sifa-contact-info,
	.elementor-element-3b102cf .sifa-contact-visual {
		flex-basis: auto !important;
		width: 100% !important;
	}

	.elementor-element-3b102cf .sifa-contact-info {
		padding: 68px 52px !important;
	}

	.elementor-element-3b102cf .sifa-contact-visual {
		min-height: 820px !important;
		padding: 52px !important;
	}

	.elementor-element-3b102cf .sifa-contact-panel {
		width: min(680px, 100%) !important;
	}

	footer .elementor-element-fa9141a {
		margin-top: 56px !important;
	}

	footer .elementor-element-a8adeaf {
		margin-top: 44px !important;
	}
}

@media (max-width: 767px) {
	.elementor-70 .elementor-element-sifa70b,
	.elementor-element-f1310a7 .elementor-element-a9d3aa8,
	.elementor-element-3b102cf,
	footer .elementor-element-0b81516,
	footer .elementor-element-fa9141a,
	footer .elementor-element-a8adeaf {
		width: calc(100% - 36px) !important;
	}

	.elementor-element-e8aba98 .elementor-element-b4292ee {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.sifa-home-service-card:hover,
	.sifa-home-service-card:focus-visible,
	.sifa-home-service-card:focus-within {
		transform: none;
	}

	.elementor-element-f1310a7 .elementor-element-a9d3aa8 a::before {
		width: 34px;
		height: 34px;
	}

	.elementor-element-3b102cf .sifa-contact-info {
		padding: 58px 28px !important;
	}

	.elementor-element-3b102cf .sifa-contact-visual {
		min-height: 0 !important;
		padding: 38px 18px !important;
	}

	.elementor-element-3b102cf .sifa-contact-panel {
		width: 100% !important;
		padding: 38px 24px !important;
	}

	.elementor-element-3b102cf .sifa-contact-title .elementor-heading-title {
		font-size: 50px !important;
	}

	footer .elementor-element-12e80d0 {
		padding-bottom: 40px !important;
	}

	footer .elementor-element-fa9141a {
		margin-top: 48px !important;
	}

	footer .elementor-element-a8adeaf {
		margin-top: 38px !important;
	}
}

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

	.sifa-home-service-card,
	.elementor-element-269d577 .elementor-button,
	.elementor-element-1cb6098 .elementor-button,
	.elementor-element-3e5a262 .elementor-button,
	.elementor-element-f1310a7 .elementor-element-a9d3aa8 a::before,
	.elementor-element-f1310a7 .elementor-element-a9d3aa8 a::after,
	footer .elementor-element-bd4de0d a::after,
	footer .elementor-element-5bfa901 a::after,
	.elementor-element-3b102cf form.elementor-form button.elementor-button[type="submit"] {
		transition: none !important;
	}
}
