/* Netdomy single property template — scoped, dependency-free styles. */
.ndpt,
.ndpt *,
.ndpt *::before,
.ndpt *::after {
	box-sizing: border-box;
}

.ndpt {
	--ndpt-brand: var(--global-palette1, #2b6cb0);
	--ndpt-brand-dark: var(--global-palette2, #215387);
	--ndpt-brand-soft: #edf5fd;
	--ndpt-ink: var(--global-palette3, #172033);
	--ndpt-muted: #617085;
	--ndpt-line: #dfe6ee;
	--ndpt-surface: #ffffff;
	--ndpt-canvas: #f5f8fb;
	--ndpt-success: #087f5b;
	--ndpt-warning: #ad4e00;
	--ndpt-danger: #b42318;
	--ndpt-radius-sm: 12px;
	--ndpt-radius: 20px;
	--ndpt-radius-lg: 28px;
	--ndpt-shadow: 0 16px 44px rgba(29, 52, 82, 0.09);
	--ndpt-shadow-hover: 0 22px 55px rgba(29, 52, 82, 0.16);
	color: var(--ndpt-ink);
	background: var(--ndpt-canvas);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.65;
	min-height: 70vh;
	overflow: clip;
}

.ndpt [hidden] {
	display: none !important;
}

.ndpt img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ndpt button,
.ndpt input,
.ndpt textarea,
.ndpt select {
	font: inherit;
}

.ndpt button,
.ndpt a {
	-webkit-tap-highlight-color: transparent;
}

.ndpt a {
	color: var(--ndpt-brand-dark);
}

.ndpt h1,
.ndpt h2,
.ndpt h3,
.ndpt p,
.ndpt dl,
.ndpt dd,
.ndpt figure {
	margin-top: 0;
}

.ndpt-shell {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

.ndpt-icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.ndpt-hero {
	position: relative;
	padding: 22px 0 30px;
	background:
		radial-gradient(circle at 85% 5%, rgba(43, 108, 176, 0.12), transparent 36%),
		linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
	border-bottom: 1px solid var(--ndpt-line);
}

.ndpt-breadcrumbs {
	margin: 0 0 24px;
	color: var(--ndpt-muted);
	font-size: 0.84rem;
}

.ndpt-breadcrumbs ol,
.ndpt-breadcrumbs .yoast-breadcrumbs,
.ndpt-breadcrumbs > span {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ndpt-breadcrumbs li:not(:last-child)::after,
.ndpt-breadcrumbs .yoast-breadcrumbs span span:not(:last-child)::after,
.ndpt-breadcrumbs > span > span:not(:last-child)::after {
	content: "/";
	margin-left: 7px;
	color: #a2afbe;
}

.ndpt-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.ndpt-breadcrumbs a:hover {
	color: var(--ndpt-brand);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ndpt-title-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(270px, 350px);
	gap: clamp(28px, 5vw, 72px);
	align-items: end;
}

.ndpt-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.ndpt-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 11px;
	border: 1px solid #b8d5ef;
	border-radius: 999px;
	background: var(--ndpt-brand-soft);
	color: var(--ndpt-brand-dark);
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.035em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ndpt-badge--neutral {
	border-color: var(--ndpt-line);
	background: #fff;
	color: #4b5c70;
}

.ndpt-badge--featured {
	border-color: #f6d06f;
	background: #fff8df;
	color: #805600;
}

.ndpt-badge--sold {
	border-color: #f0b4ae;
	background: #fff0ef;
	color: var(--ndpt-danger);
}

.ndpt-title-copy h1 {
	max-width: 880px;
	margin-bottom: 16px;
	color: var(--ndpt-ink);
	font-size: clamp(2rem, 4vw, 3.35rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
	text-wrap: balance;
}

.ndpt-location-line {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 10px;
	color: #3f5065;
	font-size: 1.03rem;
	font-weight: 600;
}

.ndpt-location-line .ndpt-icon {
	margin-top: 0.19em;
	color: var(--ndpt-brand);
}

.ndpt-price-panel {
	padding: 24px;
	border: 1px solid var(--ndpt-line);
	border-radius: var(--ndpt-radius);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 36px rgba(28, 52, 80, 0.08);
	backdrop-filter: blur(10px);
}

.ndpt-price-label,
.ndpt-price-sub {
	display: block;
	color: var(--ndpt-muted);
	font-size: 0.83rem;
}

.ndpt-price {
	display: block;
	margin: 2px 0;
	color: var(--ndpt-ink);
	font-size: clamp(1.75rem, 3vw, 2.55rem);
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 1.12;
	white-space: nowrap;
}

.ndpt-price--ask {
	font-size: 1.55rem;
	white-space: normal;
}

.ndpt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 19px;
	padding-top: 16px;
	border-top: 1px solid var(--ndpt-line);
}

.ndpt-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 38px;
	padding: 7px 10px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: #405269;
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease;
}

.ndpt-action:hover,
.ndpt-action:focus-visible {
	background: var(--ndpt-brand-soft);
	color: var(--ndpt-brand-dark);
}

.ndpt-action--contact {
	background: var(--ndpt-brand-soft);
	color: var(--ndpt-brand-dark);
}

.ndpt-action .ndpt-icon {
	width: 18px;
	height: 18px;
}

.ndpt-action-feedback,
.ndpt-phone-status {
	min-height: 1.2em;
	margin: 5px 0 0;
	color: var(--ndpt-success);
	font-size: 0.78rem;
}

.ndpt-facts {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
}

.ndpt-facts li {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 14px;
	border: 1px solid var(--ndpt-line);
	border-radius: var(--ndpt-radius-sm);
	background: rgba(255, 255, 255, 0.76);
}

.ndpt-fact-icon,
.ndpt-field-icon,
.ndpt-section-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--ndpt-brand-soft);
	color: var(--ndpt-brand);
}

.ndpt-fact-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.25;
}

.ndpt-fact-copy strong {
	overflow: hidden;
	color: var(--ndpt-ink);
	font-size: 0.95rem;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ndpt-fact-copy > span {
	margin-top: 3px;
	color: var(--ndpt-muted);
	font-size: 0.7rem;
	line-height: 1.25;
}

.ndpt-gallery-section {
	padding: 28px 0 18px;
	background: var(--ndpt-canvas);
}

.ndpt-gallery {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(160px, 240px));
	gap: 8px;
	overflow: hidden;
	min-height: 430px;
	border-radius: var(--ndpt-radius-lg);
	background: #dbe4ee;
	box-shadow: var(--ndpt-shadow);
}

.ndpt-gallery-item {
	overflow: hidden;
	margin: 0;
	background: #e8eef5;
}

.ndpt-gallery-item--main {
	grid-row: 1 / 3;
}

.ndpt-gallery-trigger {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.ndpt-gallery-trigger:focus-visible {
	position: relative;
	z-index: 1;
	outline: 3px solid #fff;
	outline-offset: -5px;
}

.ndpt-gallery--1 {
	grid-template-columns: 1fr;
	grid-template-rows: minmax(360px, 600px);
}

.ndpt-gallery--1 .ndpt-gallery-item--main,
.ndpt-gallery--2 .ndpt-gallery-item--main,
.ndpt-gallery--3 .ndpt-gallery-item--main {
	grid-row: 1 / 3;
}

.ndpt-gallery--2,
.ndpt-gallery--3 {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.ndpt-gallery--2 .ndpt-gallery-item:nth-child(2) {
	grid-row: 1 / 3;
}

.ndpt-gallery--3 .ndpt-gallery-item:nth-child(2),
.ndpt-gallery--3 .ndpt-gallery-item:nth-child(3) {
	grid-column: 2;
}

.ndpt-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ndpt-gallery-item:hover img {
	transform: scale(1.025);
}

.ndpt-gallery-open {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 43px;
	padding: 9px 14px;
	border: 1px solid rgba(17, 30, 47, 0.18);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 28px rgba(16, 32, 52, 0.18);
	color: var(--ndpt-ink);
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 800;
	backdrop-filter: blur(10px);
}

.ndpt-gallery-open:hover {
	background: #fff;
	color: var(--ndpt-brand-dark);
}

.ndpt-gallery-empty {
	display: grid;
	place-items: center;
	gap: 12px;
	min-height: 330px;
	border: 1px dashed #bdc9d6;
	border-radius: var(--ndpt-radius-lg);
	background: linear-gradient(135deg, #eef3f8, #fff);
	color: var(--ndpt-muted);
	text-align: center;
}

.ndpt-gallery-empty .ndpt-icon {
	width: 64px;
	height: 64px;
	color: #a3b3c5;
}

.ndpt-gallery-dialog {
	width: 100vw;
	max-width: none;
	height: 100vh;
	height: 100dvh;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #080d15;
	color: #fff;
	overflow: hidden;
}

.ndpt-gallery-dialog[open] {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
}

.ndpt-gallery-dialog::backdrop {
	background: rgba(5, 10, 18, 0.82);
	backdrop-filter: blur(5px);
}

.ndpt-dialog-head {
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	background: rgba(13, 21, 34, 0.92);
	backdrop-filter: blur(14px);
}

.ndpt-dialog-title {
	margin: 2px 0 0;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.4rem);
	line-height: 1.25;
}

.ndpt-dialog-head .ndpt-eyebrow {
	color: #a9c9e8;
}

.ndpt-dialog-close {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
}

.ndpt-lightbox-stage {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 54px;
	gap: clamp(8px, 2vw, 24px);
	align-items: center;
	min-height: 0;
	padding: 16px clamp(10px, 3vw, 34px);
}

.ndpt-lightbox-media {
	display: grid;
	place-items: center;
	min-width: 0;
	height: 100%;
	min-height: 0;
}

.ndpt-lightbox-image {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 176px);
	max-height: calc(100dvh - 176px);
	object-fit: contain;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.ndpt-lightbox-nav {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.ndpt-lightbox-nav:hover,
.ndpt-lightbox-nav:focus-visible,
.ndpt-dialog-close:hover,
.ndpt-dialog-close:focus-visible {
	background: rgba(255, 255, 255, 0.2);
}

.ndpt-lightbox-nav--prev .ndpt-icon {
	transform: rotate(180deg);
}

.ndpt-lightbox-footer {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	min-height: 58px;
	padding: 10px clamp(18px, 4vw, 64px);
	background: rgba(13, 21, 34, 0.94);
	color: #d7e1ec;
}

.ndpt-lightbox-footer > span {
	font-size: 0.82rem;
	font-weight: 800;
}

.ndpt-lightbox-footer p,
.ndpt-lightbox-error {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.4;
}

.ndpt-lightbox-error {
	color: #fff;
	text-align: center;
}

.ndpt-main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(310px, 370px);
	gap: 28px;
	align-items: start;
	padding-top: 22px;
	padding-bottom: 64px;
}

.ndpt-content-column {
	display: grid;
	gap: 22px;
	min-width: 0;
}

.ndpt-card,
.ndpt-contact-card,
.ndpt-trust-note {
	border: 1px solid var(--ndpt-line);
	border-radius: var(--ndpt-radius);
	background: var(--ndpt-surface);
	box-shadow: 0 8px 28px rgba(29, 52, 82, 0.055);
}

.ndpt-card {
	padding: clamp(22px, 4vw, 38px);
}

.ndpt-card h2,
.ndpt-location-links h2,
.ndpt-mortgage h2,
.ndpt-related h2 {
	margin-bottom: 24px;
	color: var(--ndpt-ink);
	font-size: clamp(1.55rem, 2.5vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.18;
	text-wrap: balance;
}

.ndpt-eyebrow {
	display: block;
	margin-bottom: 6px;
	color: var(--ndpt-brand);
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ndpt-prose {
	color: #34445a;
	font-size: 1.01rem;
}

.ndpt-prose > :first-child {
	margin-top: 0;
}

.ndpt-prose > :last-child {
	margin-bottom: 0;
}

.ndpt-prose h2,
.ndpt-prose h3,
.ndpt-prose h4 {
	margin-top: 1.65em;
	margin-bottom: 0.65em;
	color: var(--ndpt-ink);
	font-weight: 780;
	letter-spacing: -0.018em;
	line-height: 1.25;
}

.ndpt-prose h2 {
	font-size: 1.5rem;
}

.ndpt-prose h3 {
	font-size: 1.25rem;
}

.ndpt-prose p,
.ndpt-prose ul,
.ndpt-prose ol,
.ndpt-prose blockquote {
	margin-bottom: 1.2em;
}

.ndpt-prose li + li {
	margin-top: 0.34em;
}

.ndpt-prose a {
	font-weight: 650;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ndpt-prose blockquote {
	padding: 13px 18px;
	border-left: 4px solid var(--ndpt-brand);
	border-radius: 0 10px 10px 0;
	background: var(--ndpt-brand-soft);
}

.ndpt-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 24px;
	margin: 0;
}

.ndpt-field {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 15px 0;
	border-bottom: 1px solid var(--ndpt-line);
}

.ndpt-field-icon {
	width: 38px;
	height: 38px;
}

.ndpt-field dl {
	margin: 0;
}

.ndpt-field dt,
.ndpt-location-grid dt {
	color: var(--ndpt-muted);
	font-size: 0.76rem;
	font-weight: 650;
	line-height: 1.3;
}

.ndpt-field dd,
.ndpt-location-grid dd {
	margin: 3px 0 0;
	color: var(--ndpt-ink);
	font-size: 0.94rem;
	font-weight: 750;
	line-height: 1.4;
}

.ndpt-chip-list,
.ndpt-link-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.ndpt-chip,
.ndpt-link-chips a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 10px;
	border: 1px solid #cedaea;
	border-radius: 999px;
	background: #f7fafe;
	color: #3f536c;
	font-size: 0.76rem;
	font-weight: 680;
	line-height: 1.25;
}

.ndpt-link-chips a {
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.ndpt-link-chips a:hover,
.ndpt-link-chips a:focus-visible {
	border-color: #a9cae9;
	background: var(--ndpt-brand-soft);
	color: var(--ndpt-brand-dark);
}

.ndpt-feature-block {
	margin-top: 28px;
}

.ndpt-feature-block h3 {
	margin-bottom: 14px;
	font-size: 1.12rem;
}

.ndpt-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ndpt-feature-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #3f5064;
	font-size: 0.9rem;
}

.ndpt-feature-list .ndpt-icon {
	color: var(--ndpt-success);
}

.ndpt-location-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--ndpt-line);
	border-radius: var(--ndpt-radius-sm);
	background: var(--ndpt-line);
}

.ndpt-location-grid > div {
	min-width: 0;
	padding: 14px 15px;
	background: #fff;
}

.ndpt-map-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
}

.ndpt-location-privacy-note {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 18px 0 0;
	padding: 12px 14px;
	border: 1px solid #bfd8eb;
	border-radius: 10px;
	background: #f1f8fd;
	color: #294b65;
	font-size: 0.9rem;
	line-height: 1.5;
}

.ndpt-location-privacy-note svg {
	width: 19px;
	height: 19px;
	margin-top: 1px;
	flex: 0 0 auto;
}

.ndpt-map-frame {
	overflow: hidden;
	margin-top: 18px;
	border: 1px solid var(--ndpt-line);
	border-radius: 14px;
	background: #e8eef5;
}

.ndpt-map-frame iframe {
	display: block;
	width: 100%;
	height: 390px;
	border: 0;
}

.ndpt-approximate-map {
	width: 100%;
	height: 390px;
	background: #e8eef5;
}

.ndpt-property-id {
	margin: 14px 0 0;
	color: var(--ndpt-muted);
	font-size: 0.8rem;
}

.ndpt-property-id strong {
	color: var(--ndpt-ink);
}

.ndpt-sidebar {
	position: sticky;
	top: 22px;
	display: grid;
	gap: 14px;
}

.admin-bar .ndpt-sidebar {
	top: 54px;
}

.ndpt-contact-card {
	padding: 25px;
	box-shadow: var(--ndpt-shadow);
	scroll-margin-top: 80px;
}

.ndpt-contact-head {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 17px;
}

.ndpt-avatar {
	display: block;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(43, 108, 176, 0.25);
	object-fit: cover;
	opacity: 0;
	visibility: hidden;
}

.ndpt-avatar.is-loaded {
	opacity: 1;
	visibility: visible;
}

.ndpt-contact-head .ndpt-eyebrow {
	margin-bottom: 3px;
	font-size: 0.67rem;
}

.ndpt-contact-name {
	margin: 0;
	color: var(--ndpt-ink);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.25;
}

.ndpt-contact-intro,
.ndpt-contact-note,
.ndpt-owner-note {
	margin-bottom: 17px;
	color: var(--ndpt-muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

.ndpt-contact-note,
.ndpt-owner-note {
	padding: 11px 13px;
	border-radius: 10px;
	background: #f6f8fb;
}

.ndpt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 47px;
	padding: 10px 17px;
	border: 1px solid transparent;
	border-radius: 11px;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 780;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ndpt-button:hover {
	transform: translateY(-1px);
}

.ndpt-button--primary {
	width: 100%;
	background: linear-gradient(135deg, var(--ndpt-brand), var(--ndpt-brand-dark));
	box-shadow: 0 8px 22px rgba(43, 108, 176, 0.22);
	color: #fff;
}

.ndpt-button--primary:hover,
.ndpt-button--primary:focus-visible {
	box-shadow: 0 12px 28px rgba(43, 108, 176, 0.32);
	color: #fff;
}

.ndpt-button--secondary {
	border-color: #b9cadc;
	background: #fff;
	color: var(--ndpt-brand-dark);
}

.ndpt-button--secondary:hover,
.ndpt-button--secondary:focus-visible {
	background: var(--ndpt-brand-soft);
	color: var(--ndpt-brand-dark);
}

.ndpt-button[disabled] {
	opacity: 0.68;
	cursor: wait;
	transform: none;
}

.ndpt-phone-status a {
	display: inline-block;
	margin-top: 8px;
	color: var(--ndpt-brand-dark);
	font-size: 1.14rem;
	font-weight: 850;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.ndpt-languages {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.ndpt-languages > span {
	color: var(--ndpt-muted);
	font-size: 0.77rem;
	font-weight: 650;
}

.ndpt-contact-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 21px 0 17px;
	color: #8491a2;
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.ndpt-contact-divider::before,
.ndpt-contact-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--ndpt-line);
}

.ndpt-login-prompt {
	text-align: center;
}

.ndpt-login-prompt > .ndpt-icon {
	width: 34px;
	height: 34px;
	margin: 0 auto 8px;
	color: var(--ndpt-brand);
}

.ndpt-login-title {
	margin-bottom: 7px;
	font-size: 1.02rem;
	font-weight: 800;
}

.ndpt-login-prompt p {
	margin-bottom: 14px;
	color: var(--ndpt-muted);
	font-size: 0.82rem;
}

.ndpt-text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ndpt-brand-dark);
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
}

.ndpt-text-link:hover,
.ndpt-text-link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ndpt-text-link .ndpt-icon {
	width: 17px;
	height: 17px;
}

.ndpt-login-prompt .ndpt-text-link {
	justify-content: center;
	width: 100%;
	margin-top: 11px;
}

.ndpt-trust-note {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 10px;
	padding: 15px;
	background: #fffaf0;
	color: #6d561c;
}

.ndpt-trust-note p {
	margin: 0;
	font-size: 0.74rem;
	line-height: 1.5;
}

.ndpt-trust-note .ndpt-icon {
	color: #b98412;
}

/* Front End PM is intentionally rendered only for authenticated users. */
.ndpt-message-form {
	font-size: 0.88rem;
}

.ndpt-message-form .fep-form-field {
	margin-bottom: 14px;
}

.ndpt-message-form .fep-label,
.ndpt-message-form label {
	display: block;
	margin-bottom: 5px;
	color: var(--ndpt-ink);
	font-size: 0.79rem;
	font-weight: 750;
}

.ndpt-message-form .fep-field {
	min-width: 0;
}

.ndpt-message-form input[type="text"],
.ndpt-message-form input[type="email"],
.ndpt-message-form textarea,
.ndpt-message-form select {
	width: 100%;
	min-height: 43px;
	padding: 9px 11px;
	border: 1px solid #bdcada;
	border-radius: 9px;
	background: #fff;
}

.ndpt-message-form textarea {
	min-height: 130px;
	resize: vertical;
}

.ndpt-message-form input:focus,
.ndpt-message-form textarea:focus,
.ndpt-message-form select:focus {
	border-color: var(--ndpt-brand);
	box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.14);
	outline: 0;
}

.ndpt-message-form input[type="submit"],
.ndpt-message-form button[type="submit"],
.ndpt-message-form .fep-button {
	width: 100%;
	min-height: 45px;
	padding: 9px 15px;
	border: 0;
	border-radius: 10px;
	background: var(--ndpt-brand);
	color: #fff;
	font-weight: 780;
	cursor: pointer;
}

.ndpt-location-links,
.ndpt-mortgage,
.ndpt-related {
	padding: 58px 0;
}

.ndpt-location-links {
	border-top: 1px solid var(--ndpt-line);
	background: #fff;
}

.ndpt-location-links h2 {
	margin-bottom: 18px;
}

.ndpt-mortgage {
	background:
		radial-gradient(circle at 0% 0%, rgba(43, 108, 176, 0.16), transparent 37%),
		#eaf2fa;
}

.ndpt-mortgage-grid {
	display: grid;
	grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(30px, 6vw, 80px);
	align-items: center;
}

.ndpt-mortgage-copy .ndpt-section-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	background: #fff;
	box-shadow: 0 10px 25px rgba(43, 108, 176, 0.14);
}

.ndpt-mortgage-copy h2 {
	margin-bottom: 12px;
}

.ndpt-mortgage-copy p {
	margin: 0;
	color: #52657b;
}

.ndpt-mortgage-form {
	padding: clamp(20px, 4vw, 34px);
	border: 1px solid rgba(149, 177, 207, 0.6);
	border-radius: var(--ndpt-radius);
	background: #fff;
	box-shadow: var(--ndpt-shadow);
}

.ndpt-mortgage-form .mortgage-calculator {
	width: 100%;
}

.ndpt-mortgage-form input[type="number"] {
	width: 100%;
	min-height: 44px;
	padding: 9px 11px;
	border: 1px solid #bdcada;
	border-radius: 9px;
}

.ndpt-mortgage-form input[type="range"] {
	accent-color: var(--ndpt-brand);
}

.ndpt-mortgage-disclaimer {
	margin: 17px 0 0;
	padding-top: 14px;
	border-top: 1px solid #e0e7ef;
	color: #718096;
	font-size: 0.7rem;
	line-height: 1.55;
}

.ndpt-related {
	background: var(--ndpt-canvas);
}

.ndpt-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.ndpt-section-head h2 {
	margin-bottom: 0;
}

.ndpt-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ndpt-property-card {
	overflow: hidden;
	min-width: 0;
	border: 1px solid var(--ndpt-line);
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(29, 52, 82, 0.055);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.ndpt-property-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ndpt-shadow-hover);
}

.ndpt-card-image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #e6edf4;
}

.ndpt-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.ndpt-property-card:hover .ndpt-card-image img {
	transform: scale(1.025);
}

.ndpt-card-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: #9aaabd;
}

.ndpt-card-placeholder .ndpt-icon {
	width: 50px;
	height: 50px;
}

.ndpt-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #fff7d6;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
	color: #755300;
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ndpt-card-badge--sold {
	background: #fff0ef;
	color: var(--ndpt-danger);
}

.ndpt-card-body {
	padding: 17px;
}

.ndpt-card-type {
	display: block;
	margin-bottom: 5px;
	color: var(--ndpt-brand);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.ndpt-card-body h3 {
	display: -webkit-box;
	overflow: hidden;
	min-height: 2.75em;
	margin-bottom: 9px;
	font-size: 1.02rem;
	font-weight: 780;
	letter-spacing: -0.014em;
	line-height: 1.37;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ndpt-card-body h3 a {
	color: var(--ndpt-ink);
	text-decoration: none;
}

.ndpt-card-body h3 a:hover {
	color: var(--ndpt-brand-dark);
}

.ndpt-card-location {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 14px;
	color: var(--ndpt-muted);
	font-size: 0.78rem;
}

.ndpt-card-location .ndpt-icon {
	width: 15px;
	height: 15px;
	color: var(--ndpt-brand);
}

.ndpt-card-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 10px;
	padding-top: 13px;
	border-top: 1px solid var(--ndpt-line);
}

.ndpt-card-footer strong {
	color: var(--ndpt-ink);
	font-size: 1.03rem;
	font-weight: 850;
}

.ndpt-card-footer span {
	color: var(--ndpt-muted);
	font-size: 0.76rem;
	font-weight: 650;
}

.ndpt-card-specs {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	line-height: 1.35;
}

.ndpt-password {
	padding: 64px 0 90px;
}

.ndpt-password h1 {
	margin-bottom: 24px;
}

.ndpt-password form {
	max-width: 620px;
	padding: 25px;
	border: 1px solid var(--ndpt-line);
	border-radius: var(--ndpt-radius);
	background: #fff;
}

.ndpt :focus-visible {
	outline: 3px solid rgba(43, 108, 176, 0.35);
	outline-offset: 3px;
}

@media (max-width: 1120px) {
	.ndpt-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 940px) {
	.ndpt-title-grid,
	.ndpt-main-grid,
	.ndpt-mortgage-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.ndpt-price-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 20px;
	align-items: center;
	}

	.ndpt-price-panel .ndpt-price-label,
	.ndpt-price-panel .ndpt-price,
	.ndpt-price-panel .ndpt-price-sub {
		grid-column: 1;
	}

	.ndpt-actions {
		grid-column: 2;
		grid-row: 1 / 4;
		align-self: center;
		margin: 0;
		padding: 0 0 0 16px;
		border-top: 0;
		border-left: 1px solid var(--ndpt-line);
	}

	.ndpt-action-feedback {
		grid-column: 1 / -1;
	}

	.ndpt-main-grid {
		gap: 22px;
	}

	.ndpt-sidebar {
		position: static;
		grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
	}

	.ndpt-contact-card,
	.ndpt-trust-note {
		height: fit-content;
	}
}

@media (max-width: 720px) {
	.ndpt-shell {
		width: min(100% - 28px, 1240px);
	}

	.ndpt-hero {
		padding-top: 15px;
	}

	.ndpt-breadcrumbs {
		overflow: hidden;
		margin-bottom: 17px;
		white-space: nowrap;
	}

	.ndpt-breadcrumbs li:not(:last-child):not(:first-child) {
		display: none;
	}

	.ndpt-title-copy h1 {
		font-size: clamp(1.75rem, 8.2vw, 2.55rem);
	}

	.ndpt-price-panel {
		display: block;
		padding: 18px;
	}

	.ndpt-price {
		font-size: 2rem;
	}

	.ndpt-actions {
		display: flex;
		margin-top: 15px;
		padding: 13px 0 0;
		border-top: 1px solid var(--ndpt-line);
		border-left: 0;
	}

	.ndpt-facts {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		margin-right: -14px;
		padding-right: 14px;
		scrollbar-width: none;
	}

	.ndpt-facts::-webkit-scrollbar {
		display: none;
	}

	.ndpt-facts li {
		flex: 0 0 155px;
		scroll-snap-align: start;
	}

	.ndpt-gallery-section {
		padding-top: 18px;
	}

	.ndpt-gallery,
	.ndpt-gallery--1,
	.ndpt-gallery--2,
	.ndpt-gallery--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: minmax(260px, 58vw) 120px;
		min-height: 388px;
		border-radius: 18px;
	}

	.ndpt-gallery-item--main,
	.ndpt-gallery--1 .ndpt-gallery-item--main,
	.ndpt-gallery--2 .ndpt-gallery-item--main,
	.ndpt-gallery--3 .ndpt-gallery-item--main {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.ndpt-gallery--1 .ndpt-gallery-item--main {
		grid-row: 1 / 3;
	}

	.ndpt-gallery--2 .ndpt-gallery-item:nth-child(2),
	.ndpt-gallery--3 .ndpt-gallery-item:nth-child(2),
	.ndpt-gallery--3 .ndpt-gallery-item:nth-child(3) {
		grid-column: auto;
		grid-row: 2;
	}

	.ndpt-gallery--2 .ndpt-gallery-item:nth-child(2) {
		grid-column: 1 / -1;
	}

	.ndpt-gallery-item:nth-child(n + 4) {
		display: none;
	}

	.ndpt-gallery-open {
		right: 10px;
		bottom: 10px;
	}

	.ndpt-lightbox-stage {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		gap: 5px;
		padding: 8px;
	}

	.ndpt-lightbox-nav {
		width: 42px;
		height: 42px;
	}

	.ndpt-dialog-head {
		padding: 12px 14px;
	}

	.ndpt-lightbox-footer {
		grid-template-columns: 1fr;
		gap: 2px;
		min-height: 66px;
		padding: 8px 16px;
	}

	.ndpt-main-grid {
		padding-bottom: 45px;
	}

	.ndpt-card {
		padding: 22px 18px;
		border-radius: 16px;
	}

	.ndpt-card h2,
	.ndpt-location-links h2,
	.ndpt-mortgage h2,
	.ndpt-related h2 {
		font-size: 1.55rem;
	}

	.ndpt-field-grid,
	.ndpt-feature-list,
	.ndpt-location-grid,
	.ndpt-sidebar,
	.ndpt-related-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.ndpt-location-grid {
		gap: 0;
		background: transparent;
	}

	.ndpt-location-grid > div {
		border-bottom: 1px solid var(--ndpt-line);
	}

	.ndpt-map-actions,
	.ndpt-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.ndpt-map-frame iframe,
	.ndpt-approximate-map {
		height: 310px;
	}

	.ndpt-location-links,
	.ndpt-mortgage,
	.ndpt-related {
		padding: 42px 0;
	}

	.ndpt-mortgage-form {
		padding: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ndpt *,
	.ndpt *::before,
	.ndpt *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
