:root{
     --kp-white: #ffffff; 
     --kp-yellow: #D4AF37;     
     --kp-dark: #343433;
     --kp-gray: #727474; 
     }
    /* var(--kp-dark);*/
body {
    font-family: 'Inter', sans-serif;

}
.kp-projects {
	display: flex;
	flex-direction: column;
	gap: 42px;
}

.kp-projects__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
    justify-content: center;
}

.kp-projects__filter {
	border: none;
	background: #f1f5f9;
	color: var(--kp-dark);
	padding: 10px 18px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.kp-projects__filter:hover {
	
	background: var(--kp-dark);
	color: var(--kp-white);
}

.kp-projects__filter:focus-visible {
	outline: 2px solid #1d4ed8;
	outline-offset: 2px;
}

.kp-projects__filter.is-active {
	background: var(--kp-dark);
	color: var(--kp-white);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.kp-projects__group {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.kp-projects__group.is-hidden {
	display: none;
}

.kp-projects__group-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.kp-projects__group-title {
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: -0.15px;
    text-decoration: underline ;
    text-transform: uppercase;
    margin: 0;
}

.kp-projects__group-rule {
	flex: 1;
	height: 1px;
	background: #d9dce2;
    display: none;
}

.kp-projects__cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.kp-project-card {
	background: var(--white);
	border-radius: 24px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kp-project-card.is-hidden {
	display: none;
}

.kp-project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.kp-project-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.kp-project-card__image img,
.kp-project-card__image-tag {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kp-project-card__body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	/* gap: 16px; */
}

.kp-project-card__terms {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--kp-yellow);
	margin: 0;
    font-weight: 700;
}

.kp-project-card__title {
	font-size: 20px;
	margin: 0;
    color: var(--kp-dark);
    margin-bottom: 8px;
}

.kp-project-card__title a {
	color: inherit;
	text-decoration: none;
}

.kp-project-card__title a:hover {
	text-decoration: underline;
}

.kp-project-card__excerpt {
	margin: 0;
	color:  var(--kp-dark);
	line-height: 1.55;
}

.kp-project-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--kp-dark);
	font-weight: 600;
	font-size: 14px;
    margin-top: 20px;
}

.kp-project-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px 6px 0px;
    font-size: 14px;
}

.kp-project-card__features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.kp-project-card__feature {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 14px;
	background: #eef2ff;
	color: #3730a3;
	font-size: 0.9rem;
}

.kp-project-card__feature-icon {
	font-size: 1rem;
}

.kp-projects__empty {
	margin: 0;
	padding: 24px;
	text-align: center;
	background: #f1f5f9;
	border-radius: 16px;
	color:  var(--kp-dark);
}

.kp-property-archive {
	background: #f8fafc;
	padding: 72px 0 96px;
}

.kp-property-archive__header,
.kp-property-archive__filters,
.kp-property-archive__results {
	/* width: min(1180px, 92vw); */
	width: 100%;
	margin: 0 auto;
}

.kp-property-archive__header {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.kp-property-archive__header-inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.kp-property-archive__header-inner h1 {
	margin: 0;
    text-align: center;
}

.kp-property-advanced__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.kp-property-advanced__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--kp-dark);
}

.kp-property-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.88rem;
	color:  var(--kp-dark);
}

.kp-property-field span {
	font-weight: 600;
	color: #1f2937;
}


.kp-property-field--split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.kp-property-field--split label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.86rem;
	color:  var(--kp-dark);
}

.kp-property-field--split span {
	font-weight: 600;
	color: #1f2937;
}

.kp-property-archive__breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #64748b;
	font-size: 0.95rem;
    display: none;
}

.kp-property-archive__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.kp-property-archive__breadcrumb a:hover {
	text-decoration: underline;
}

.kp-property__wraper {
   max-width: 1470px;
    margin: 0 auto;
}

.kp-property-inner__wraper {
    display: flex;
    gap: 28px;
    flex-direction: column;
}

.kp-property-archive__filters {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 320px);
	gap: 32px;
	align-items: flex-start;
	margin-top: 28px;
}

.kp-property-archive__filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px;
	background: #F0F0F0;
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.kp-property-filter {
	position: relative;
    display: flex;
    flex: auto;
}

.kp-property-filter__trigger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #F0F0F0;
	color: #1f2937;
	cursor: pointer;
	transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}
.kp-property-filter__trigger:hover {
    background: transparent;
}
/* .kp-property-filter__trigger:hover,
.kp-property-filter__trigger.is-selected,
.kp-property-filter.is-open .kp-property-filter__trigger {
	background: var(--kp-dark);
	color: var(--kp-white);
	border-color: var(--kp-dark);
} */

.kp-property-filter__icon {
	font-size: 0.7rem;
}

.kp-property-filter__dropdown {
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	min-width: 200px;
	max-height: 320px;
	overflow-y: auto;
	background: var(--kp-white);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
	border-radius: 16px;
	padding: 10px;
	list-style: none;
	margin: 0;
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 20;
}

.kp-property-filter.is-open .kp-property-filter__dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.kp-property-filter__option {
	display: block;
	padding: 8px 12px;
	border-radius: 10px;
	text-decoration: none;
	color: #1f2937;
    font-weight: 700;
	font-size: 14px;
	transition: background 0.2s ease, color 0.2s ease;
}

.kp-property-filter__option:hover {
	background: #f1f5f9;
}

.kp-property-filter__option.is-active {
	background: var(--kp-dark);
	color: var(--kp-white);
	font-weight: 700;
}

.kp-property-filter--sort {
	margin-left: auto;
}

.kp-property-filter--sort .kp-property-filter__dropdown {
	left: auto;
	right: 0;
}

.kp-property-archive__advanced {
	background: var(--kp-white);
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	padding: 24px;
	position: sticky;
	top: 100px;
}

.kp-property-advanced__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
	margin-bottom: 18px;
}

.kp-property-advanced__grid label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.88rem;
	color:  var(--kp-dark);
}

.kp-property-advanced__grid input,
.kp-property-select {
	border: 1px solid #C3C3C2;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 12px;
	background: var(--kp-white);
	color: #1f2937;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kp-property-advanced__grid input:focus,
.kp-property-select:focus {
	outline: none;
	border-color: var(--kp-dark);
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.kp-property-advanced__submit {
	width: 100%;
	border: none;
	border-radius: 12px;
	padding: 22px 16px;
	font-size: 1rem;
	font-weight: 600;
	background: var(--kp-dark);
	color: var(--kp-white);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.kp-property-advanced__submit:hover {
	background: var(--kp-dark);
	transform: translateY(-1px);
}

.kp-property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 28px;
}

.kp-property-card {
	display: flex;
	flex-direction: column;
	background: var(--kp-white);
	border-radius: 30px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.kp-property-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.kp-property-card__image {
	display: block;
	position: relative;
	aspect-ratio: 16 / 11;
}

.kp-property-card__image img,
.kp-property-card__image-tag {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kp-property-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px;
}


.kp-property-card__meta {
	position: absolute;
	top: 18px;
	right: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	pointer-events: none;
}

.kp-property-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	pointer-events: auto;
}

.kp-property-card__badges--inline {
	margin-bottom: 12px;
}

.kp-property-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
    border: 1px solid var(--kp-dark);
}

.kp-property-card__badge--deal {
	background: var(--kp-white);
	color: var(--kp-dark);
}

.kp-property-card__badge--status {
	background: var(--kp-white);
	color: var(--kp-dark);
}

.kp-property-card__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--kp-dark);
}

.kp-property-card__title a {
	color: inherit;
	text-decoration: none;
}

.kp-property-card__title a:hover {
	text-decoration: underline;
}

.kp-property-card__price {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--kp-yellow);
}

.kp-property-card__location {
	margin: 0;
	font-size: 10px;
	color: var(--kp-dark);
	display: flex;
	align-items: center;
	gap: 8px;
    font-weight: 700;
}

.kp-property-card__excerpt {
	margin: 0;
	color:  var(--kp-dark);
	line-height: 1.6;
    font-size: 10px;
}

.kp-property-card__specs,
.kp-property-card__features,
.kp-property-card__tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.kp-property-card__features li {
    padding: 0 !important;
    font-size: 10px;
}

.kp-property-card__feature-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.kp-property-card__features-label {
	margin: 0;
	font-size:10px;
	font-weight: 700;
	color:  var(--kp-dark);
}

.kp-property-card__specs li,
.kp-property-card__features li,
.kp-property-card__tags li {
	padding: 6px 12px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 600;
}

.kp-property-card__specs li {
	background: rgba(15, 23, 42, 0.08);
	color: var(--kp-dark);
}

.kp-property-card__features li {
	color: var(--kp-dark);
    font-weight: 700;
}

.kp-property-card__tags li {
	background: var(--kp-white);
	color: var(--kp-dark);
    border: 1px solid #EBEBEB;
    border-radius: 6px;
}

.kp-property-card__actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kp-property-card__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	background: #f8fafc;
	color: var(--kp-dark);
	border: 1px solid #e2e8f0;
}

.kp-property-card__action:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
	background: var(--kp-dark);
	color: var(--kp-white);
}

.kp-property-card__link {
	margin-top: 8px;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--kp-dark);
	color: var(--kp-white);
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
}

.kp-property-card__link:hover {
	background: #0f172a;
	transform: translateY(-1px);
}

.kp-property-pagination {
	margin-top: 36px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.kp-pagination__arrows {
	display: flex;
	align-items: center;
	gap: 8px;
}

.kp-pagination__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	color: var(--kp-dark);
	text-decoration: none;
	font-size: 18px;
	transition: background 0.2s ease, color 0.2s ease;
}

.kp-pagination__arrow:hover {
	background: transparent;
	color: var(--kp-dark);
}

.kp-pagination__arrow.is-disabled {
	background: transparent;
	color: #94a3b8;
	cursor: default;
	pointer-events: none;
}

.kp-pagination__list {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kp-pagination__item .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	/* background: #ffffff; */
	color: #1f2937;
	text-decoration: none;
	font-weight: 700;
	/* border: 1px solid #e2e8f0; */
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.kp-pagination__item .page-numbers:hover {
	background: var(--kp-dark);
	color: var(--kp-white);
	border-color: var(--kp-dark);
}

/* .kp-pagination__item .page-numbers.current {
	background: var(--kp-dark);
	color: var(--kp-white);
	border-color: var(--kp-dark);
} */

.kp-property-archive__empty {
	margin: 48px 0 0;
	padding: 32px;
	text-align: center;
	background: rgba(148, 163, 184, 0.12);
	border-radius: 20px;
	color:  var(--kp-dark);
}

@media (max-width: 1024px) {
	.kp-property-archive__filters {
		grid-template-columns: 1fr;
	}

	.kp-property-filter--sort {
		margin-left: 0;
	}

	.kp-property-archive__advanced {
		position: static;
	}
}

@media (max-width: 640px) {
	.kp-property-archive__filter-tabs {
		flex-direction: column;
	}

	.kp-property-filter__dropdown {
		position: static;
		transform: none;
		box-shadow: none;
		margin-top: 8px;
		opacity: 1;
		pointer-events: auto;
	}

	.kp-property-filter {
		width: 100%;
	}

	.kp-property-filter__trigger {
		width: 100%;
		justify-content: space-between;
	}

	.kp-property-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.kp-property-card__actions {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.kp-project-card__body {
		padding: 18px;
	}

	.kp-project-card__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

.kp-archive {
	padding: 80px 0;
}

.kp-archive__inner {
	width: min(1200px, 92vw);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.kp-archive__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kp-archive__title {
	font-size: clamp(2rem, 3.6vw, 2.6rem);
	margin: 0;
    color: var(--kp-dark);
}

.kp-archive__subtitle {
	margin: 0;
	color: #6b7280;
	font-size: 1rem;
}

.kp-single-project {
	padding: 0 0 80px 0;
	background: #f8fafc;
}

.kp-single-project__article {
	width: min(1180px, 92vw);
	margin: 0 auto;
	background: var(--kp-white);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 80px 30px 60px 30px;
}

.kp-single-project__header {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.kp-single-project__back {
	top: 24px;
	left: 24px;
	z-index: 5;
}

.kp-back-link {
	display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--kp-dark);
}

.kp-back-link:hover {
	background: rgba(15, 23, 42, 0.92);
}

.kp-back-link__icon {
	font-size: 1rem;
}

.kp-single-project__hero,
.kp-single-project__hero-media {
	position: relative;
	width: 100%;
}

.kp-single-project__hero {
	display: flex;
	flex-direction: column;
	gap: 16px;
    /* margin-bottom: 80px; */
}

.kp-single-project__hero-media {
	height: clamp(320px, 55vw, 530px);
	max-height: 530px;
	overflow: hidden;
}

.kp-single-project__hero-image {
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
}

.kp-single-project__hero-nav,
.kp-single-project__gallery-nav {
	position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.kp-single-project__hero-nav:hover,
.kp-single-project__gallery-nav:hover {
    background: rgba(15, 23, 42, 0.7);
}


.kp-single-project__hero-nav--prev,
.kp-single-project__gallery-nav--prev {
	left: 24px;
}

.kp-single-project__hero-nav--next,
.kp-single-project__gallery-nav--next {
	right: 24px;
}

.kp-single-project__hero-thumbs,
.kp-single-project__gallery-thumbs {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	padding: 0 24px 24px;
}

.kp-single-project__hero-thumbs {
    display: none;
}

.kp-single-project__hero-thumb,
.kp-single-project__gallery-thumb {
	border: none;
	padding: 0;
	border-radius: 18px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.kp-single-project__hero-thumb img,
.kp-single-project__gallery-thumb img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9.5;
	object-fit: cover;
	transition: transform 0.2s ease, opacity 0.2s ease;
	opacity: 0.6;
}

.kp-gallery-dots {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 999px;
}

.kp-gallery-dot {
	width: 12px;
	height: 6px;
    padding: 0;
	border-radius: 6px;
	border: none;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.kp-gallery-dot.is-active {
	width: 73px;
	border-radius: 999px;
	background: var(--kp-white);
}

.kp-gallery-dot:hover {
	background: rgba(15, 23, 42, 0.6);
}

.kp-single-project__hero-thumb.is-active img,
.kp-single-project__gallery-thumb.is-active img,
.kp-single-project__hero-thumb:hover img,
.kp-single-project__gallery-thumb:hover img {
	transform: scale(1.02);
	opacity: 1;
}

.kp-single-project__heading {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.kp-single-project__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: #64748b;
}

.kp-single-project-title__wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kp-single-project__title {
	margin: 0;
	font-size: clamp(2.2rem, 3.6vw, 2.6rem);
	color: var(--kp-dark);
}

.kp-single-project__sector {
	margin: 0;
	font-size: 1.2rem;
	color: var(--kp-yellow);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.kp-single-project__gallery {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 0 56px;
}

.kp-single-project__gallery-main {
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.kp-single-project__gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-single-project__gallery-thumbs {
	padding: 0;
}

.kp-single-project__divider {
	width: 26px;
	height: 2px;
	background: var(--kp-dark);
	border-radius: 999px;
	display: inline-block;
    margin-bottom: 28px;
}
.kp-single-project__divider.center {
    margin-left: auto;
    margin-right: auto;
}
.kp-single-project__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
}

.kp-single-project__summary {
    padding-top: 28px;
    position: relative;
}
.kp-single-project__section-title {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	line-height: 1.2;
	color: var(--kp-dark);
}

.kp-single-project__lede {
	color: #6b7280;
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 12px 0 24px;
}

.kp-single-project__description {
	color:  var(--kp-dark);
	font-size: 1rem;
	line-height: 1.75;
}

.kp-single-project__summary .kp-single-project__details p {
	margin: 0 0 16px;
    font-size: 20px;
    color: var(--kp-dark);
}

.kp-single-project__section-heading {
	margin: 0;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--kp-dark);
}
.kp-single-project__fact-grid {
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.kp-single-project__fact {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #f8fafc;
	border-radius: 18px;
	padding: 16px 18px;
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.18);
}

.kp-single-project__fact-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--kp-yellow);
	color: #111827;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 700;
}

.kp-icon-developer::before { content: '\1F4BC'; }
.kp-icon-sector::before { content: '\1F3E2'; }
.kp-icon-calendar::before { content: '\1F4C5'; }
.kp-icon-location::before { content: '\1F4CD'; }

.kp-single-project__fact-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.kp-single-project__fact-label {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.68rem;
	color: #64748b;
}

.kp-single-project__fact-value {
	font-size: 1rem;
	color: var(--kp-dark);
	font-weight: 600;
}

.kp-single-project__features--grid {
	margin: 32px 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.kp-single-project__features--grid li {
	color: var(--kp-dark);
	border-radius: 16px;
	padding: 10px 0;
}

.kp-single-project__features--grid .kp-feature-icon {
	color: var(--gray);
}

.kp-single-project__features {
	list-style: none;
	padding: 0;
	margin: 28px 0 58px 0 ;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.kp-single-project__features li {
	display: flex;
	align-items: center;
	gap: 22px;
	font-weight: 600;
    font-size: 20px;
}

.kp-feature-icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #D4AF37;
	color: #111827;
	font-size: 1.1rem;
}

.kp-feature-icon--image {
 	background: transparent;
 	padding: 0;
}

.kp-feature-icon--image .kp-feature-icon-image {
 	max-width: 40px;
 	max-height: 40px;
 	width: auto;
 	height: auto;
}

.kp-single-project__map {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.kp-single-project__map-frame {
	border-radius: 24px;
	overflow: hidden;
	min-height: 420px;
	background: #e5e7eb;
}

.kp-single-project__map-frame iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.kp-single-property {
	background: #f8fafc;
	/* padding: 80px 0 100px; */
}

.kp-single-property__article {
	width: min(1180px, 92vw);
	margin: 0 auto;
	background: var(--kp-white);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 28px;
    padding: 80px 30px;
}

.kp-single-property__hero {
	position: relative;
	background: #0f172a;
	max-height: 600px;
}

.kp-single-property__hero-frame {
	position: relative;
	height: clamp(320px, 60vw, 600px);
	max-height: 600px;
	overflow: hidden;
}

.kp-single-property__hero-media {
	position: relative;
	width: 100%;
	height: 100%;
}

.kp-single-property__hero-image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 600px;
	object-fit: cover;
}

.kp-single-property__hero-frame .is-hidden {
	display: none !important;
}

.kp-single-property__hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.kp-single-property__hero-video iframe,
.kp-single-property__hero-video video {
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
	border-radius: inherit;
}

.kp-single-property__hero-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.82);
	color: #111827;
	text-decoration: none;
	font-size: 1.8rem;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.kp-single-property__nav {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.60);
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
	width: 56px;
    height: 56px;
	border-radius: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	cursor: pointer;
    backdrop-filter: blur(2px);
}

.kp-single-property__nav:hover {
	background: rgba(15, 23, 42, 0.7);
}

.kp-single-property__nav--prev {
	left: 24px;
}

.kp-single-property__nav--next {
	right: 24px;
}

.kp-single-property__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	padding: 18px 24px 24px;
	background: #0f172a;
    display: none;
}

.kp-single-property__thumb {
	border: none;
	padding: 0;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.kp-single-property__thumb img {
	display: block;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 10;
	opacity: 0.6;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.kp-single-property__thumb.is-active img,
.kp-single-property__thumb:hover img {
	transform: scale(1.02);
	opacity: 1;
}

.kp-single-property__header {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.kp-single-property__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 600;
	color:  var(--kp-dark);
}

.kp-single-property__back:hover {
	color: var(--kp-dark);
}

.kp-single-property__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.kp-single-property__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    /* text-transform: uppercase; */
    border: 1px solid var(--kp-dark);
}

.kp-single-property__badge--deal {
	background: var(--kp-white);
    color: var(--kp-dark);
}

.kp-single-property__badge--status {
	background: var(--kp-white);
    color: var(--kp-dark);
}

.kp-single-property__intro {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.kp-single-property__title {
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 2.6rem);
	color: var(--kp-dark);
}

.kp-single-property__price {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--kp-yellow);
}

.kp-single-property__location {
	margin: 0;
	color: var(--kp-dark);
	display: flex;
	align-items: center;
	gap: 8px;
    font-size: 17px;
}

.kp-single-property__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-weight: 600;
	color:  var(--kp-dark);
}

.kp-single-property__summary {
	display: flex;
	flex-direction: column;
	gap: 18px;
	color: var(--kp-dark);
	font-size: 1rem;
	line-height: 1.7;
}

.kp-single-property__summary p {
	font-size: 1.4rem;
	color: var(--kp-dark);
}
.kp-single-property__section-title {
	margin: 24px 0 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--kp-dark);
}
.kp-single-property__request .kp-single-property__section-title {
    text-align: center;
    margin-top: 0;
}
.kp-single-property__feature-list {
	margin: 0;
	padding-left: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px 16px;
	list-style: disc;
    font-size: 20px;
    color: var(--kp-gray);
}

.kp-single-property__feature-list li {
    color: var(--kp-gray);
}

.kp-single-property__contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 12px;
}

.kp-single-property__contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--kp-dark);
	background: var(--kp-white);
	color: var(--kp-dark);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kp-single-property__contact:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	background: var(--kp-dark);
	color: var(--kp-white);
}

.kp-single-property__map {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.kp-single-property__map-frame {
	border-radius: 24px;
	overflow: hidden;
	min-height: 360px;
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.18);
}

.kp-single-property__map-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
    min-height: 360px;
}

.kp-single-property__request {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 36px;
    background: #F5F5F5;
    margin-top: 32px;
    border-radius: 30px;
}

.kp-single-property__form {
	display: flex;
	flex-direction: column;
	/* gap: 18px; */
}

.kp-single-property__form-grid {
    display: flex;
    gap: 4%;
    width: 100% !important;
    flex-wrap: wrap;
}
/* .kp-single-property__form-field, */
.kp-single-property__form-grid label {
	display: flex;
    gap: 6px;
    font-size: 0.95rem;
    color: var(--kp-dark);
    width: 48%;
    margin-bottom: 16px;
}
.kp-single-property__form-grid label:last-child {
    width: 100% !important;
}
.kp-single-property__form-field span,
.kp-single-property__form-grid label span {
    display: none;
}
.kp-single-property__form input,
.kp-single-property__form select,
.kp-single-property__form textarea {
	border: 1px solid #C3C3C2;
	border-radius: 6px;
	padding: 12px;
	font-size: 12px;
/* End of file */
	color: #111827;
	margin-bottom: 0;
}

/* .kp-single-property__form input {
    border-color: #C3C3C2;
} */
.kp-single-property__form input:focus,
.kp-single-property__form select:focus,
.kp-single-property__form textarea:focus {
	outline: none;
	border-color: var(--kp-dark);
}
.kp-single-property__thumb .kp-thumb-indicator {
	position: absolute;
	left: 12px;
	bottom: 12px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.85);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 0.75rem;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}

/* -------------------------------------------------------------------------- */
/* Press Release Archive                                                      */
/* -------------------------------------------------------------------------- */

/* Press Release archive styling */
.kp-press-archive {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding: 48px 0 72px;
    width: min(1248px, 92vw);
    margin: 0 auto;
}

.kp-press-archive__header {
	margin: 0 auto;
	text-align: left;
	padding: 0 24px;
}

.kp-press-archive__title {
	font-size: 2.875rem;
	margin: 0 0 8px;
	color: var(--kp-dark);
	letter-spacing: -0.02em;
}

.kp-press-archive__intro {
	margin: 0;
	color: #394150;
	font-size: 1.1rem;
	line-height: 1.75;
}
.kp-shortcode-grid--press,
.kp-press-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.kp-press-grid--compact {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.kp-press-card {
	background: var(--kp-white);
	border-radius: 32px;
	box-shadow: 0 32px 60px rgba(18, 28, 45, 0.18);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kp-press-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 36px 72px rgba(18, 28, 45, 0.22);
}

.kp-press-card__image {
	display: block;
	height: 240px;
	overflow: hidden;
}

.kp-press-card__image img,
.kp-press-card__image-tag {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kp-press-card__body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kp-press-card__title {
	font-size: 20px;
	margin: 0;
	color: var(--kp-dark);
	font-weight: 700;
}

.kp-press-card__title a {
	color: inherit;
	text-decoration: none;
}

.kp-press-card__title a:hover {
	text-decoration: none;
}

.kp-press-card__meta {
	margin: 0;
	color: var(--kp-dark);
	font-weight: 700;
	letter-spacing: -0.44px;
	font-size: 18px;
}

.kp-press-card__excerpt {
	margin: 0;
	color: #445064;
	line-height: 1.75;
	font-size: 1rem;
}

.kp-press-card__link {
	margin-top: auto;
	align-self: flex-start;
	font-weight: 600;
	color: var(--kp-dark);
	text-decoration: none;
	display: inline-flex;
	gap: 10px;
	align-items: center;
	font-size: 0.95rem;
}

.kp-press-card__link svg {
	width: 16px;
	height: 16px;
}

.kp-press-archive__pagination {
	display: flex;
	justify-content: center;
	padding: 12px 24px 0;
}

.kp-press-archive__empty {
	text-align: center;
	color: #6b7280;
	padding: 0 24px;
}

@media (max-width: 768px) {
	.kp-press-archive {
		padding: 32px 0 56px;
	}

	.kp-press-card__body {
		padding: 24px;
	}

	.kp-press-card__title {
		font-size: 1.25rem;
	}
}

/* -------------------------------------------------------------------------- */
/* Press Release Single                                                       */
/* -------------------------------------------------------------------------- */

.kp-press-single {
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding-bottom: 80px;
}


.kp-press-single__hero {
	background: linear-gradient(135deg, rgba(247, 250, 252, 0.65), rgba(250, 250, 250, 0.95));
}

.kp-press-single__hero-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 360px;
	background: #eef2f7;
	border-radius: 32px;
	margin: 0 24px;
}

.kp-press-single__hero-placeholder-inner {
	color: #6b7280;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kp-press-single__article {
	max-width: 1155px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 0 24px;
}

.kp-press-single__meta-bar {
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 28px;
    align-items: start;
}

.kp-press-single__back {
	text-decoration: none;
	font-weight: 600;
	color: var(--kp-dark);
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

.kp-press-single__dateline {
	margin: 0;
	color: var(--kp-dark);
	font-weight: 600;
	letter-spacing: 0.37px;
	text-transform: uppercase;
    font-size: 17px;
}

.kp-press-single__title {
	font-size: 2.5rem;
	line-height: 1.18;
	margin: 0;
	color: var(--kp-dark);
	letter-spacing: -0.015em;
}

.kp-press-single__content {
	font-size: 1.08rem;
	line-height: 1.92;
	color: #2b3342;
}

.kp-press-single__content p {
	margin-bottom: 1.4em;
}

.kp-press-single__section {
	border-top: 1px solid #e2e8f0;
	padding-top: 32px;
}

.kp-press-single__section-title {
	font-size: 1.4rem;
	margin-bottom: 32px;
	color: var(--kp-dark);
}

.kp-press-single__contact {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	color: #374151;
}

.kp-press-single__contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.kp-press-single__contact a {
	color: var(--kp-dark);
	text-decoration: none;
}

.kp-press-single__contact a:hover {
	text-decoration: underline;
}

.kp-press-single__notes {
	background: #f6f8fb;
	border-radius: 18px;
	padding: 18px 20px;
	font-size: 0.97rem;
	line-height: 1.7;
}

.kp-press-single__related {
	width: 1240px;
	margin: 0 auto;
	padding: 0 24px 0;
}

@media (max-width: 768px) {
	.kp-press-single__meta-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.kp-press-single__title {
		font-size: 2rem;
	}
}

.kp-single-property__submit {
	align-self: flex-start;
	border: none;
	border-radius: 6px;
	padding: 22px 28px;
	font-size: 1rem;
	font-weight: 600;
	background: var(--kp-dark);
	color: var(--kp-white);
	cursor: pointer;
    width: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 12px;
}

.kp-single-property__submit:hover {
	transform: translateY(-1px);
	background: var(--kp-dark);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.kp-single-property__notice {
	padding: 14px 18px;
	border-radius: 12px;
	font-weight: 600;
}

.kp-single-property__notice--success {
	background: rgba(34, 197, 94, 0.12);
	color: #15803d;
}

.kp-single-property__notice--error {
	background: rgba(239, 68, 68, 0.12);
	color: #b91c1c;
}

@media (max-width: 1024px) {
	.kp-single-property__header,
	.kp-single-property__intro,
	.kp-single-property__map,
	.kp-single-property__request {
		padding: 0 36px;
	}

	.kp-single-property__nav {
		display: none;
	}
}

@media (max-width: 640px) {
	/* .kp-single-property__article {
		border-radius: 24px;
	} */

	.kp-single-property__thumbs {
		padding: 16px;
	}

	.kp-single-property__contact-actions {
		flex-direction: column;
	}

	.kp-single-property__submit {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 768px) {
	/* .kp-single-project__article {
		border-radius: 24px;
		gap: 36px;
	} */

	.kp-single-project__heading,
	.kp-single-project__gallery,
	.kp-single-project__content,
	.kp-single-project__map {
		padding: 0 24px;
	}

	.kp-single-project__hero-nav,
	.kp-single-project__gallery-nav {
		display: none;
	}
}

@media (max-width: 640px) {
	.kp-archive {
		padding: 60px 0;
	}

	.kp-single-project {
		padding: 60px 0;
	}

	.kp-single-project__hero-thumbs,
	.kp-single-project__gallery-thumbs {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	}
}
