.section-projects {
	padding: 0.9rem 0 1.4rem;
	background: transparent;
}

.section-projects__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 2rem;
}

.section-projects__content {
	max-width: 36rem;
}

.section-projects__title {
	margin: 0 0 1rem;
	font-family: var(--ldg-font-display);
	font-size: clamp(2.15rem, 4vw, 4.4rem);
	line-height: 0.96;
	color: #1c1c1c;
}

.section-projects__copy {
	margin: 0;
	font-family: var(--ldg-font-body);
	font-size: clamp(1rem, 1.35vw, 1.16rem);
	line-height: 1.7;
	color: rgba(28, 28, 28, 0.72);
}

.section-projects__action {
	display: flex;
	justify-content: flex-end;
	align-self: center;
}

.section-projects__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0 0 0.55rem;
	background: transparent;
	border: 0;
	color: #1c1c1c;
	text-decoration: none;
	cursor: pointer;
}

.section-projects__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: rgba(28, 28, 28, 0.28);
	transform-origin: left center;
	transition: background-color 240ms ease, transform 240ms ease;
}

.section-projects__link-label {
	font-size: 0.86rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: inherit;
}

.section-projects__link-icon {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-color: currentColor;
	mask: url("../../../icons/explore.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/explore.svg") center / contain no-repeat;
	transition: transform 240ms ease, opacity 240ms ease;
}

.section-projects__link:hover::after,
.section-projects__link:focus-visible::after {
	background: var(--ldg-brand-gold);
	transform: scaleX(1.03);
}

.section-projects__link:hover .section-projects__link-icon,
.section-projects__link:focus-visible .section-projects__link-icon {
	transform: translateX(0.2rem);
}

.section-projects__carousel {
	margin-top: 2.4rem;
}

.section-projects__carousel-head {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.section-projects__nav {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}

.section-projects__nav-button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(28, 28, 28, 0.12);
	border-radius: 999px;
	background: rgba(28, 28, 28, 0.04);
	color: #1c1c1c;
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.section-projects__nav-button:hover,
.section-projects__nav-button:focus-visible {
	background: rgba(28, 28, 28, 0.08);
	border-color: rgba(28, 28, 28, 0.22);
	transform: translateY(-1px);
}

.section-projects__nav-icon {
	display: inline-block;
	width: 0.95rem;
	height: 0.95rem;
	background-color: currentColor;
	mask: url("../../../icons/explore.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/explore.svg") center / contain no-repeat;
}

.section-projects__nav-button--back .section-projects__nav-icon {
	transform: rotate(180deg);
}

.section-projects__viewport {
	overflow-x: hidden;
	overflow-y: visible;
	padding-bottom: 1.1rem;
}

.section-projects__cards {
	--projects-visible: 3;
	display: flex;
	gap: 1.1rem;
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.section-projects__card-slide {
	flex: 0 0 calc((100% - (1.1rem * (var(--projects-visible) - 1))) / var(--projects-visible));
}

.project-card {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	transition: transform 240ms ease;
}

.project-card:hover,
.project-card:focus-within {
	transform: translateY(0.85rem);
}

.project-card__media {
	position: relative;
	overflow: hidden;
	border-radius: 0.45rem;
	background: rgba(5, 12, 24, 0.08);
}

.project-card__image-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid rgba(28, 28, 28, 0.12);
	border-radius: 999px;
	background: rgba(241, 242, 244, 0.62);
	color: #1c1c1c;
	backdrop-filter: blur(8px);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%);
	transition: opacity 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.project-card__image-nav--prev {
	left: 0.7rem;
}

.project-card__image-nav--next {
	right: 0.7rem;
}

.project-card__image-nav-icon {
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	background-color: currentColor;
	mask: url("../../../icons/explore.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/explore.svg") center / contain no-repeat;
}

.project-card__image-nav--prev .project-card__image-nav-icon {
	transform: rotate(180deg);
}

.project-card:hover .project-card__image-nav,
.project-card:focus-within .project-card__image-nav {
	opacity: 1;
	pointer-events: auto;
}

.project-card__image-nav:hover,
.project-card__image-nav:focus-visible {
	background: rgba(241, 242, 244, 0.9);
	border-color: rgba(28, 28, 28, 0.24);
}

.project-card__track {
	display: flex;
	width: 100%;
	transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.project-card__slide {
	flex: 0 0 100%;
}

.project-card__image-link {
	display: block;
	color: inherit;
}

.project-card__image {
	display: block;
	width: 100%;
	height: 14.5rem;
	object-fit: cover;
}

.project-card__meta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 0.85rem;
}

.project-card__title {
	margin: 0 0 0.45rem;
	font-family: var(--ldg-font-display);
	font-size: clamp(1rem, 1.4vw, 1.35rem);
	line-height: 1.05;
	color: #1c1c1c;
}

.project-card__title-link {
	color: inherit;
	text-decoration: none;
	transition: color 220ms ease;
}

.project-card__title-link:hover,
.project-card__title-link:focus-visible {
	color: var(--ldg-brand-gold);
}

.project-card__address {
	margin: 0;
	font-family: var(--ldg-font-body);
	font-size: 0.84rem;
	line-height: 1.5;
	color: rgba(28, 28, 28, 0.62);
}

.project-card__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.42rem 0.8rem;
	border: 1px solid rgba(166, 132, 74, 0.8);
	border-radius: 999px;
	font-size: 0.67rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ldg-brand-gold);
	white-space: nowrap;
}

.project-single__gallery {
	margin-top: 1.5rem;
}

.project-single__gallery-shell {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.project-single__gallery-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	transform: translateY(-50%);
}

.project-single__gallery-button {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(28, 28, 28, 0.12);
	border-radius: 999px;
	background: rgba(241, 242, 244, 0.78);
	color: #1c1c1c;
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.project-single__gallery-button:hover,
.project-single__gallery-button:focus-visible {
	background: rgba(241, 242, 244, 0.94);
	border-color: rgba(28, 28, 28, 0.24);
	transform: translateY(-1px);
}

.project-single {
	padding-top: clamp(5.5rem, 8vw, 7.5rem);
}

.project-single__gallery-button-icon {
	display: inline-block;
	width: 0.95rem;
	height: 0.95rem;
	background-color: currentColor;
	mask: url("../../../icons/explore.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/explore.svg") center / contain no-repeat;
}

.project-single__gallery-button--prev .project-single__gallery-button-icon {
	transform: rotate(180deg);
}

.project-single__grid {
	display: flex;
	gap: 1rem;
	align-items: stretch;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.project-single__grid--centered {
	flex-wrap: nowrap;
	justify-content: center;
	overflow-x: visible;
	scroll-snap-type: none;
}

.project-single__grid .project-single__item {
	flex: 0 0 calc((100% - 2rem) / 2.5);
}

.project-single__grid--centered .project-single__item {
	flex: 0 1 min(34rem, calc((100% - 1rem) / 2));
	max-width: 34rem;
}

.project-single__grid::-webkit-scrollbar {
	display: none;
}

.project-single__item {
	min-width: 0;
	scroll-snap-align: start;
}

.project-single__item .project-card {
	width: 100%;
	height: 100%;
	gap: 0;
}

.project-single__item .project-card:hover,
.project-single__item .project-card:focus-within {
	transform: none;
}

.project-single__item .project-card__media {
	width: 100%;
	aspect-ratio: 5 / 4;
	min-height: clamp(22rem, 34vw, 32rem);
	background: rgba(5, 12, 24, 0.08);
}

.project-single__item .project-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-single__details {
	padding: clamp(3rem, 5vw, 4.5rem) 0 0;
	background: #fff;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.project-single__details-shell {
	padding: 0;
}

.project-single__details-card {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.2rem);
	background: #fff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.project-single__details-top {
	display: grid;
	grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.4fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: stretch;
}

.project-single__project-intro {
	display: grid;
	align-content: start;
	gap: 0.65rem;
	padding: 0;
}

.project-single__project-name {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: clamp(2rem, 3.6vw, 3.7rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	color: #18130f;
	text-wrap: balance;
}

.project-single__project-address {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(24, 19, 15, 0.66);
}

.project-single__project-tag {
	display: inline-flex;
	align-items: center;
	justify-self: center;
	margin: 0.55rem 0 0;
	padding: 0.42rem 0.85rem 0.4rem;
	border: 1px solid rgba(166, 132, 74, 0.32);
	border-radius: 999px;
	background: rgba(166, 132, 74, 0.12);
	color: #b8a27b;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.project-single__detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid rgba(24, 19, 15, 0.12);
	border-bottom: 1px solid rgba(24, 19, 15, 0.12);
}

.project-single__detail-block {
	position: relative;
	padding: 1.5rem 1.25rem 1.6rem 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.project-single__detail-block--story {
	display: grid;
	align-content: end;
	min-height: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.project-single__detail-eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 0.52);
}

.project-single__detail-title {
	margin: 0 0 0.65rem;
	font-family: var(--ldg-font-display);
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	line-height: 1.05;
	color: #18130f;
}

.project-single__detail-copy {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.78;
	color: rgba(24, 19, 15, 0.74);
}

.project-single__detail-block--story .project-single__detail-copy {
	font-family: var(--ldg-font-body);
	font-size: clamp(1.18rem, 1.8vw, 1.6rem);
	line-height: 1.72;
	color: #18130f;
	max-width: 48rem;
}

.project-single__quote {
	margin: 0;
	display: grid;
	gap: 0.9rem;
	padding: 0 0 1.5rem;
	padding-top: 1.75rem;
	border-top: 0;
	position: relative;
}

.project-single__quote-text {
	margin: 0;
	font-family: var(--ldg-font-body);
	font-size: clamp(1.45rem, 2.5vw, 2.1rem);
	line-height: 1.45;
	color: #18130f;
	max-width: 46rem;
}

.project-single__quote-cite {
	display: block;
	font-style: normal;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 0.52);
}

.project-single__detail-block--story .project-single__detail-eyebrow,
.project-single__quote-cite {
	color: var(--ldg-brand-gold);
}

.project-single__detail-grid > .project-single__detail-block:not(:last-child) {
	border-right: 1px solid rgba(24, 19, 15, 0.12);
	padding-right: 1.5rem;
}

.project-single__detail-grid > .project-single__detail-block:not(:first-child) {
	padding-left: 1.5rem;
}

.project-single__other {
	padding: clamp(3.25rem, 6vw, 5rem) 0 0;
}

.available-home-single__details {
	padding: clamp(3rem, 5vw, 4.5rem) 0 0;
	background: #fff;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.available-home-single__details-shell {
	padding: 0;
}

.available-home-single__details-layout {
	display: grid;
	grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.35fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
}

.available-home-single__identity {
	display: grid;
	align-content: start;
	gap: 0.7rem;
	margin-bottom: 1.25rem;
}

.available-home-single__name {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: clamp(2rem, 3.8vw, 3.8rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	color: #18130f;
	text-wrap: balance;
}

.available-home-single__address {
	margin: 0;
	max-width: 28rem;
	font-size: 1rem;
	line-height: 1.68;
	color: rgba(24, 19, 15, 0.66);
}

.available-home-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	padding-top: 0.35rem;
}

.available-home-single__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.44rem 0.88rem 0.42rem;
	border: 1px solid rgba(24, 19, 15, 0.12);
	border-radius: 999px;
	background: rgba(24, 19, 15, 0.04);
	color: #18130f;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.available-home-single__tag--gold {
	border-color: rgba(166, 132, 74, 0.34);
	background: rgba(166, 132, 74, 0.12);
	color: rgba(166, 132, 74, 0.68);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.available-home-single__tag--contract {
	border-color: rgba(44, 102, 173, 0.22);
	background: rgba(44, 102, 173, 0.12);
	color: #2c66ad;
}

.available-home-single__property-story {
	display: grid;
	align-content: start;
	gap: 0.7rem;
}

.available-home-single__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ldg-brand-gold);
}

.available-home-single__property-copy {
	margin: 0;
	max-width: 52rem;
	font-family: var(--ldg-font-body);
	font-size: clamp(1.18rem, 1.8vw, 1.6rem);
	line-height: 1.72;
	color: #18130f;
}

.available-home-single__floor-plan {
	padding: clamp(2.5rem, 4vw, 4rem) 0 0;
	background: #fff;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.available-home-single__floor-plan-shell {
	padding: 0;
}

.available-home-single__floor-plan-layout {
	display: grid;
	grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
}

.available-home-single__specs {
	padding-top: 1.1rem;
}

.available-home-single__floor-plan-media-wrap {
	display: grid;
	gap: 1rem;
	align-content: start;
	justify-items: center;
}

.available-home-single__floor-switch {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0;
	align-items: stretch;
	justify-self: center;
	padding: 0.18rem;
	border: 1px solid rgba(166, 132, 74, 0.32);
	border-radius: 999px;
	overflow: hidden;
	background: rgba(166, 132, 74, 0.12);
}

.available-home-single__floor-switch-button {
	display: inline-flex;
	flex: 1 1 0;
	position: relative;
	align-items: center;
	justify-content: center;
	min-width: 8.5rem;
	padding: 0.6rem 0.95rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(166, 132, 74, 0.56);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.available-home-single__floor-switch-button:hover,
.available-home-single__floor-switch-button:focus-visible {
	color: #8a6d3b;
}

.available-home-single__floor-switch-button.is-active {
	background: linear-gradient(180deg, rgba(250, 252, 255, 0.82) 0%, rgba(223, 231, 240, 0.42) 100%);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 -1px 0 rgba(199, 214, 231, 0.3), 0 10px 22px rgba(112, 140, 176, 0.16);
	color: rgba(52, 66, 84, 0.92);
	z-index: 1;
}

.available-home-single__spec-table {
	border-top: 1px solid rgba(24, 19, 15, 0.12);
}

.available-home-single__spec-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(24, 19, 15, 0.12);
}

.available-home-single__spec-label,
.available-home-single__spec-value {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
}

.available-home-single__spec-label {
	color: rgba(24, 19, 15, 0.66);
}

.available-home-single__spec-value {
	font-weight: 500;
	color: #18130f;
	text-align: right;
}

.available-home-single__floor-plan-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(20rem, 34vw, 32rem);
	padding: 0;
	background: transparent;
}

.available-home-single__floor-plan-image {
	display: none;
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.available-home-single__floor-plan-image.is-active {
	display: block;
}

.available-home-single__floor-plan-story {
	padding: clamp(2.5rem, 4vw, 4rem) 0 0;
	background: #fff;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.available-home-single__floor-plan-story-shell {
	padding: 0 0 clamp(3rem, 5vw, 4.5rem);
}

.available-home-single__floor-plan-story-layout {
	display: grid;
	grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
}

.available-home-single__floor-plan-copy-wrap {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.available-home-single__floor-plan-title {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: clamp(2rem, 3.6vw, 3.6rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	color: #18130f;
}

.available-home-single__floor-plan-title span {
	display: block;
}

.available-home-single__floor-plan-copy {
	margin: 0;
	max-width: 38rem;
	font-family: var(--ldg-font-body);
	font-size: clamp(1.08rem, 1.5vw, 1.3rem);
	line-height: 1.78;
	color: rgba(24, 19, 15, 0.76);
}

.available-home-single__viewing-form-card {
	padding: clamp(1.2rem, 2.5vw, 2rem);
	border: 1px solid rgba(166, 132, 74, 0.14);
	background: #fffdf8;
}

.available-home-single__viewing-form {
	display: grid;
	gap: 1rem;
}

.available-home-single__viewing-form-title {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: clamp(1.4rem, 2vw, 1.85rem);
	line-height: 1.02;
	color: #18130f;
}

.available-home-single__viewing-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.available-home-single__viewing-field {
	display: grid;
	gap: 0.45rem;
}

.available-home-single__viewing-field span {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 0.5);
}

.available-home-single__viewing-field input,
.available-home-single__viewing-field textarea {
	width: 100%;
	min-height: 3.1rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(166, 132, 74, 0.18);
	border-radius: 0;
	background: #f8f5ef;
	color: #1c1c1c;
	font: inherit;
}

.available-home-single__viewing-field textarea {
	min-height: 8.5rem;
	resize: vertical;
}

.available-home-single__viewing-field input::placeholder,
.available-home-single__viewing-field textarea::placeholder {
	color: rgba(28, 28, 28, 0.44);
}

.available-home-single__viewing-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-height: 3rem;
	padding: 0.9rem 1.35rem;
	border: 1px solid #a6844a;
	background: #a6844a;
	color: #f1f2f4;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
}

.available-home-single__viewing-submit:hover,
.available-home-single__viewing-submit:focus-visible {
	background: #8f6f3e;
	border-color: #8f6f3e;
}

.available-home-single__other {
	padding: clamp(3rem, 5vw, 4.75rem) 0 0;
	background: #050c18;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.available-home-single__other .project-single__other-head {
	margin-bottom: 1.4rem;
}

.available-home-single__other .project-single__other-title {
	color: #f1f2f4;
}

.available-home-single__other .project-single__other-button {
	border-color: rgba(241, 242, 244, 0.18);
	background: rgba(241, 242, 244, 0.08);
	color: #f1f2f4;
}

.available-home-single__other .project-single__other-button:hover,
.available-home-single__other .project-single__other-button:focus-visible {
	background: rgba(241, 242, 244, 0.16);
	border-color: rgba(241, 242, 244, 0.32);
}

.available-home-single__other .project-single__other-track {
	padding-bottom: 1.75rem;
}

.available-home-single__other-item .available-home-card {
	height: 100%;
	background: rgba(241, 242, 244, 0.06);
	border-color: rgba(241, 242, 244, 0.14);
	box-shadow: none;
}

.available-home-single__other-item .available-home-card__media {
	background: rgba(241, 242, 244, 0.04);
}

.available-home-single__other-item .available-home-card__title,
.available-home-single__other-item .available-home-card__title-link {
	color: #f1f2f4;
}

.available-home-single__other-item .available-home-card__title-link:hover,
.available-home-single__other-item .available-home-card__title-link:focus-visible {
	color: #ffffff;
}

.available-home-single__other-item .available-home-card__location {
	color: rgba(241, 242, 244, 0.68);
}

.available-home-single__other-item .available-home-card__type {
	background: rgba(166, 132, 74, 0.18);
	border-color: rgba(166, 132, 74, 0.28);
	color: #f3dfb5;
}

.available-home-single__other-item .available-home-card__detail {
	color: #f1f2f4;
}

.available-home-single__other-item .available-home-card__value-line {
	color: rgba(241, 242, 244, 0.74);
	border-left-color: rgba(166, 132, 74, 0.52);
}

.available-home-single__other-item .available-home-card__button--secondary {
	border-color: rgba(241, 242, 244, 0.18);
	color: #f1f2f4;
}

.available-home-single__other-item .available-home-card__button--secondary:hover,
.available-home-single__other-item .available-home-card__button--secondary:focus-visible {
	color: #f1f2f4;
	border-color: rgba(241, 242, 244, 0.3);
	background: rgba(241, 242, 244, 0.08);
}

.project-single__other-head {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.project-single__other-head-main {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
}

.project-single__other-eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ldg-brand-gold);
}

.project-single__other-title {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: clamp(2rem, 3.4vw, 3.2rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
	color: #f1f2f4;
}

.project-single__other-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1.25rem;
	border: 1px solid rgba(166, 132, 74, 0.5);
	border-radius: 999px;
	background: rgba(166, 132, 74, 0.12);
	color: #f3dfb5;
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.project-single__other-link:hover,
.project-single__other-link:focus-visible {
	background: rgba(166, 132, 74, 0.2);
	border-color: rgba(166, 132, 74, 0.72);
	color: #fff7e8;
	transform: translateY(-1px);
}

.project-single__other-nav {
	display: inline-flex;
	justify-self: end;
	gap: 0.75rem;
}

.project-single__other-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(241, 242, 244, 0.18);
	border-radius: 999px;
	background: rgba(241, 242, 244, 0.08);
	color: #f1f2f4;
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.project-single__other-button:hover,
.project-single__other-button:focus-visible {
	background: rgba(241, 242, 244, 0.16);
	border-color: rgba(241, 242, 244, 0.32);
	transform: translateY(-1px);
}

.project-single__other-button:disabled {
	opacity: 0.38;
	cursor: default;
	transform: none;
}

.project-single__other-button-icon {
	display: inline-block;
	width: 0.95rem;
	height: 0.95rem;
	background-color: currentColor;
	mask: url("../../../icons/explore.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/explore.svg") center / contain no-repeat;
}

.project-single__other-button--prev .project-single__other-button-icon {
	transform: rotate(180deg);
}

.project-single__other-viewport {
	overflow: hidden;
}

.project-single__other-track {
	--other-projects-visible: 3;
	display: flex;
	gap: 1.25rem;
	padding-bottom: 1.25rem;
	transition: transform 420ms ease;
	will-change: transform;
}

.project-single__other-item .project-card {
	height: 100%;
}

.project-single__other-item {
	flex: 0 0 calc((100% - (1.25rem * (var(--other-projects-visible) - 1))) / var(--other-projects-visible));
}

.project-single__other-item .project-card {
	height: 100%;
}

.project-single__other-item .project-card__title,
.project-single__other-item .project-card__title-link {
	color: #f1f2f4;
}

.project-single__other-item .project-card__title-link:hover,
.project-single__other-item .project-card__title-link:focus-visible {
	color: #ffffff;
}

.project-single__other-item .project-card__address {
	display: block;
	color: rgba(241, 242, 244, 0.72);
}

@media (max-width: 1080px) {
	.project-single__other-track {
		--other-projects-visible: 2;
	}
}

@media (max-width: 780px) {
	.section-projects {
		padding: 0.75rem 0 1.25rem;
	}

	.section-projects__inner {
		grid-template-columns: 1fr;
		gap: 1.4rem;
	}

	.section-projects__content {
		max-width: none;
	}

	.section-projects__title {
		font-size: clamp(1.95rem, 10vw, 3rem);
	}

	.section-projects__action {
		justify-content: flex-start;
	}

	.section-projects__carousel {
		margin-top: 1.75rem;
	}

	.section-projects__carousel-head {
		justify-content: flex-start;
	}

	.section-projects__cards {
		--projects-visible: 1;
	}

	.project-card__image {
		height: 18.5rem;
	}

	.project-card__meta {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: start;
		gap: 0.75rem;
	}

	.project-card__tag {
		padding: 0.34rem 0.62rem;
		font-size: 0.58rem;
		letter-spacing: 0.12em;
	}

	.project-single__grid {
		grid-auto-columns: 86%;
	}

	body.single-ldg_floor_plan .project-single__grid .project-single__item,
	body.single-ldg_floor_plan .project-single__grid--centered .project-single__item {
		flex: 0 0 100%;
		max-width: 100%;
	}

	body.single-ldg_floor_plan .available-home-single__floor-plan {
		padding-top: 0.35rem;
	}

	body.single-ldg_floor_plan .available-home-single__identity {
		gap: 0.45rem;
		margin-bottom: 0.4rem;
	}

	body.single-ldg_floor_plan .available-home-single__tags {
		padding-top: 0;
	}

	body.single-ldg_floor_plan .available-home-single__name {
		font-size: clamp(1.6rem, 8vw, 2.2rem);
	}

	.project-single__gallery-nav {
		padding: 0;
	}

	.project-single__gallery-button {
		width: 2.7rem;
		height: 2.7rem;
	}

	.project-single__item .project-card__image {
		height: 100%;
	}

	.project-single__details {
		padding-top: 2.25rem;
	}

	.project-single__details-top {
		grid-template-columns: 1fr;
	}

	.available-home-single__details-layout {
		grid-template-columns: 1fr;
	}

	.available-home-single__floor-plan-layout {
		grid-template-columns: 1fr;
	}

	.available-home-single__floor-plan-story-layout {
		grid-template-columns: 1fr;
	}

	.available-home-single__viewing-form-grid {
		grid-template-columns: 1fr;
	}

	.project-single__detail-grid {
		grid-template-columns: 1fr;
		border-bottom: 0;
	}

	.project-single__other-head-main {
		align-items: start;
		flex-direction: column;
	}

	.project-single__other-nav {
		justify-self: start;
	}

	.project-single__other-track {
		--other-projects-visible: 1;
		gap: 1.5rem;
	}

	.project-single__project-name {
		font-size: clamp(1.85rem, 9vw, 2.85rem);
	}

	.project-single__detail-grid > .project-single__detail-block:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid rgba(24, 19, 15, 0.12);
		padding-right: 0;
	}

	.project-single__detail-grid > .project-single__detail-block:not(:first-child) {
		padding-left: 0;
	}
}
