:root {
	--ilp-black: #0b0b0b;
	--ilp-black-soft: #171717;
	--ilp-gold: #dfba6b;
	--ilp-gold-deep: #8a641d;
	--ilp-cream: #f6f2ea;
	--ilp-white: #fff;
	--ilp-ink: #171717;
	--ilp-muted: #68655f;
	--ilp-line: #dfdbd2;
	--ilp-shadow: 0 22px 60px rgb(23 23 23 / 12%);
	--ilp-serif: Georgia, "Times New Roman", serif;
	--ilp-sans: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
	--ilp-shell: min(1180px, calc(100% - 40px));
}

body.ilp-template .site-content,
body.ilp-template .site-content > .ast-container {
	width: 100%;
	max-width: none;
	display: block;
	padding: 0;
}

body.ilp-template #primary,
body.ilp-template .site-main,
body.ilp-template .entry-content,
body.ilp-template article.page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.ilp-template article.page > .entry-header {
	display: none;
}

.ilp,
.ilp * {
	box-sizing: border-box;
}

.ilp {
	width: 100%;
	overflow: hidden;
	overflow: clip;
	color: var(--ilp-ink);
	background: var(--ilp-white);
	font-family: var(--ilp-sans);
	font-size: 16px;
	line-height: 1.65;
}

.ilp-results-page {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
}

.ilp img {
	display: block;
	max-width: 100%;
}

.ilp h1,
.ilp h2,
.ilp h3,
.ilp p {
	margin-top: 0;
}

.ilp h1,
.ilp h2,
.ilp h3 {
	color: inherit;
	font-family: var(--ilp-serif);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.ilp h1 {
	font-size: clamp(2.75rem, 6vw, 5.35rem);
}

.ilp h2 {
	font-size: clamp(2rem, 4vw, 3.55rem);
}

.ilp h3 {
	font-size: 1.75rem;
}

.ilp a {
	color: inherit;
}

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

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

.ilp :focus-visible {
	outline: 3px solid #2677d9;
	outline-offset: 4px;
}

.ilp-shell {
	width: var(--ilp-shell);
	margin-inline: auto;
}

.ilp-eyebrow {
	margin-bottom: 15px;
	color: var(--ilp-gold);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.ilp-eyebrow--dark {
	color: var(--ilp-gold-deep);
}

.ilp-button {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.ilp-button:hover {
	transform: translateY(-2px);
}

.ilp a.ilp-button--gold,
.ilp button.ilp-button--gold {
	color: var(--ilp-black);
	background: linear-gradient(135deg, #ebcd8b, var(--ilp-gold));
	box-shadow: 0 8px 24px rgb(111 78 19 / 18%);
}

.ilp a.ilp-button--gold:hover,
.ilp a.ilp-button--gold:focus,
.ilp a.ilp-button--gold:visited,
.ilp button.ilp-button--gold:hover,
.ilp button.ilp-button--gold:focus {
	color: var(--ilp-black);
	background: #efd596;
}

.ilp a.ilp-button--dark,
.ilp button.ilp-button--dark {
	color: var(--ilp-white);
	background: var(--ilp-black);
}

.ilp a.ilp-button--dark:hover,
.ilp a.ilp-button--dark:focus,
.ilp a.ilp-button--dark:visited,
.ilp button.ilp-button--dark:hover,
.ilp button.ilp-button--dark:focus {
	color: var(--ilp-white);
	background: #2a2a2a;
}

.ilp a.ilp-button--outline,
.ilp button.ilp-button--outline {
	border-color: var(--ilp-black);
	color: var(--ilp-black);
	background: transparent;
}

.ilp a.ilp-button--outline:hover,
.ilp a.ilp-button--outline:focus,
.ilp button.ilp-button--outline:hover,
.ilp button.ilp-button--outline:focus {
	color: var(--ilp-white);
	background: var(--ilp-black);
}

.ilp-search-hero {
	position: relative;
	min-height: 510px;
	overflow: hidden;
	color: var(--ilp-white);
	background:
		radial-gradient(circle at 84% 18%, rgb(223 186 107 / 29%), transparent 30%),
		radial-gradient(circle at 58% 100%, rgb(223 186 107 / 10%), transparent 35%),
		linear-gradient(118deg, #0b0b0b 0%, #161616 68%, #44381f 100%);
}

.ilp-search-hero::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(90deg, transparent 25%, #000 100%);
	content: "";
	pointer-events: none;
}

.ilp-search-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 62px;
	padding-bottom: 54px;
}

.ilp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-bottom: 36px;
	color: var(--ilp-muted);
	font-size: 0.82rem;
}

.ilp-breadcrumb a {
	color: var(--ilp-gold-deep);
	font-weight: 700;
	text-decoration: none;
}

.ilp-breadcrumb a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ilp-breadcrumb--light {
	color: #cecbc4;
}

.ilp-breadcrumb--light a {
	color: var(--ilp-gold);
}

.ilp-search-hero__copy {
	max-width: 860px;
}

.ilp-search-hero__copy h1 {
	max-width: 850px;
	margin-bottom: 22px;
}

.ilp-search-hero__copy > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: #ece9e2;
	font-size: clamp(1rem, 2vw, 1.2rem);
}

.ilp-filter-form {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr 0.85fr auto;
	align-items: end;
	gap: 10px;
	margin-top: 42px;
	padding: 13px;
	border: 1px solid rgb(223 186 107 / 28%);
	border-radius: 20px;
	background: rgb(255 255 255 / 98%);
	box-shadow: 0 24px 75px rgb(0 0 0 / 25%);
}

.ilp-filter-form label,
.ilp-contact-form label {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--ilp-ink);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.35;
}

.ilp-filter-form label > span,
.ilp-contact-form label > span {
	letter-spacing: 0.02em;
}

.ilp-filter-form input,
.ilp-filter-form select,
.ilp-contact-form input,
.ilp-contact-form textarea {
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 0 15px;
	border: 1px solid #aaa69d;
	border-radius: 10px;
	background: var(--ilp-white);
	color: var(--ilp-ink);
	font: inherit;
	font-size: 0.93rem;
	outline: none;
	box-shadow: none;
}

.ilp-filter-form input::placeholder,
.ilp-contact-form input::placeholder,
.ilp-contact-form textarea::placeholder {
	color: #77736d;
	opacity: 1;
}

.ilp-contact-form textarea {
	min-height: 112px;
	padding-top: 13px;
	resize: vertical;
}

.ilp-filter-form input:focus,
.ilp-filter-form select:focus,
.ilp-contact-form input:focus,
.ilp-contact-form textarea:focus {
	border-color: var(--ilp-gold-deep);
	box-shadow: 0 0 0 3px rgb(223 186 107 / 24%);
}

.ilp-filter-form .ilp-button {
	min-height: 50px;
	white-space: nowrap;
}

.ilp-filter-form .ilp-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-width: 2;
	stroke-linecap: round;
}

.ilp-filter-form .ilp-button:disabled,
.ilp-contact-form .ilp-button:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.ilp-results-content {
	min-height: 380px;
	padding: 102px 0 110px;
	background: var(--ilp-cream);
}

.ilp-results-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 42px;
}

.ilp-results-heading h2 {
	max-width: 780px;
	margin-bottom: 0;
}

.ilp-result-count {
	justify-self: end;
	margin-bottom: 7px;
	color: var(--ilp-muted);
	font-weight: 700;
}

.ilp-property-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ilp-property-card {
	overflow: hidden;
	border: 1px solid rgb(223 219 210 / 80%);
	border-radius: 20px;
	background: var(--ilp-white);
	box-shadow: var(--ilp-shadow);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.ilp-property-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 70px rgb(23 23 23 / 17%);
}

.ilp-property-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none !important;
}

.ilp-card-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		radial-gradient(circle at 75% 25%, rgb(223 186 107 / 24%), transparent 35%),
		linear-gradient(135deg, var(--ilp-black), #393226);
}

.ilp-card-image::after {
	position: absolute;
	inset: auto 0 0;
	height: 40%;
	background: linear-gradient(transparent, rgb(0 0 0 / 34%));
	content: "";
	pointer-events: none;
}

.ilp-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.ilp-property-card:hover .ilp-card-image img {
	transform: scale(1.055);
}

.ilp-card-chip {
	position: absolute;
	z-index: 1;
	top: 18px;
	left: 18px;
	padding: 7px 12px;
	border-radius: 999px;
	color: var(--ilp-black);
	background: var(--ilp-gold);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ilp-image-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-content: center;
	gap: 7px;
	color: var(--ilp-white);
	text-align: center;
}

.ilp-image-placeholder b {
	color: var(--ilp-gold);
	font-family: var(--ilp-serif);
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

.ilp-image-placeholder span {
	color: #ddd7cc;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ilp-card-body {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 24px;
}

.ilp-card-code {
	margin-bottom: 7px;
	color: var(--ilp-gold-deep);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ilp-card-body h3 {
	margin-bottom: 11px;
	font-size: clamp(1.55rem, 2.2vw, 1.9rem);
}

.ilp-card-location {
	margin-bottom: 15px;
	color: var(--ilp-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.ilp-card-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 13px;
	margin: 0 0 22px;
	padding: 0;
	color: var(--ilp-muted);
	font-size: 0.82rem;
	list-style: none;
}

.ilp-card-facts li {
	position: relative;
}

.ilp-card-facts li + li::before {
	position: absolute;
	left: -8px;
	color: var(--ilp-gold-deep);
	content: "·";
}

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

.ilp-card-footer strong {
	font-size: 1rem;
	line-height: 1.35;
}

.ilp-card-footer > span {
	flex: 0 0 auto;
	color: var(--ilp-gold-deep);
	font-size: 0.8rem;
	font-weight: 800;
}

.ilp-empty-state {
	max-width: 860px;
	margin: 0 auto;
	padding: 70px clamp(28px, 6vw, 78px);
	border: 1px solid #d8c291;
	border-radius: 18px;
	background:
		radial-gradient(circle at 90% 10%, rgb(223 186 107 / 16%), transparent 28%),
		var(--ilp-white);
	box-shadow: var(--ilp-shadow);
	text-align: center;
}

.ilp-empty-mark {
	display: block;
	margin: 0 auto 20px;
	color: var(--ilp-gold-deep);
	font-family: var(--ilp-serif);
	font-size: 4.2rem;
	line-height: 1;
}

.ilp-empty-state h2 {
	max-width: 680px;
	margin: 0 auto 16px;
}

.ilp-empty-state > p:not(.ilp-eyebrow) {
	max-width: 620px;
	margin: 0 auto;
	color: var(--ilp-muted);
	font-size: 1rem;
}

.ilp-empty-state .ilp-button {
	margin-top: 28px;
}

.ilp-admin-hint {
	max-width: 860px;
	margin: 16px auto 0;
	padding: 13px 17px;
	border-left: 4px solid var(--ilp-gold-deep);
	background: #fbf6e9;
	color: #5d4a22;
	font-size: 0.8rem;
}

.ilp-pagination {
	margin-top: 50px;
}

.ilp-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ilp-pagination a,
.ilp-pagination span {
	display: grid;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	place-items: center;
	border: 1px solid var(--ilp-line);
	border-radius: 999px;
	color: var(--ilp-black);
	background: var(--ilp-white);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
}

.ilp-pagination a:hover,
.ilp-pagination .current {
	border-color: var(--ilp-black);
	color: var(--ilp-white);
	background: var(--ilp-black);
}

.ilp-detail-intro {
	padding: 68px 0 54px;
	background:
		radial-gradient(circle at 88% 0%, rgb(223 186 107 / 17%), transparent 30%),
		var(--ilp-cream);
}

.ilp-detail-intro .ilp-breadcrumb {
	margin-bottom: 38px;
}

.ilp-detail-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	align-items: end;
	gap: 60px;
}

.ilp-detail-heading h1 {
	max-width: 870px;
	margin-bottom: 16px;
	font-size: clamp(2.6rem, 5.2vw, 4.8rem);
}

.ilp-detail-location {
	margin-bottom: 0;
	color: var(--ilp-muted);
	font-size: 1.02rem;
}

.ilp-detail-price-wrap {
	justify-self: end;
	text-align: right;
}

.ilp-detail-price {
	margin-bottom: 4px;
	color: var(--ilp-black);
	font-family: var(--ilp-serif);
	font-size: clamp(1.8rem, 3.2vw, 2.65rem);
	line-height: 1.15;
}

.ilp-maintenance {
	margin-bottom: 0;
	color: var(--ilp-muted);
	font-size: 0.8rem;
}

.ilp-detail-main {
	padding: 54px 0 110px;
	background: var(--ilp-white);
}

.ilp-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
	gap: 12px;
	overflow: hidden;
	border-radius: 20px;
	background: var(--ilp-black);
	box-shadow: var(--ilp-shadow);
}

.ilp-gallery button {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #2a2a2a;
	cursor: zoom-in;
}

.ilp-gallery button img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.ilp-gallery button:hover img {
	transform: scale(1.025);
}

.ilp-gallery-main {
	min-height: 570px;
}

.ilp-gallery-main > span {
	position: absolute;
	right: 20px;
	bottom: 20px;
	padding: 8px 13px;
	border: 1px solid rgb(255 255 255 / 65%);
	border-radius: 999px;
	color: var(--ilp-white);
	background: rgb(0 0 0 / 40%);
	font-size: 0.76rem;
	font-weight: 700;
	backdrop-filter: blur(8px);
}

.ilp-gallery-thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ilp-gallery-thumbs button {
	min-height: 275px;
}

.ilp-gallery-placeholder {
	display: grid;
	min-height: 420px;
	place-content: center;
	gap: 8px;
	padding: 40px;
	border-radius: 20px;
	color: var(--ilp-white);
	background:
		radial-gradient(circle at 75% 25%, rgb(223 186 107 / 23%), transparent 34%),
		linear-gradient(135deg, var(--ilp-black), #393226);
	text-align: center;
}

.ilp-gallery-placeholder span {
	color: var(--ilp-gold);
	font-family: var(--ilp-serif);
	font-size: 5rem;
	line-height: 1;
}

.ilp-gallery-placeholder p {
	margin: 0;
	color: #e8e1d7;
}

.ilp-facts-band {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin: 28px 0 0;
	padding: 0;
	overflow: hidden;
	border-radius: 18px;
	color: var(--ilp-white);
	background: var(--ilp-black);
}

.ilp-facts-band > div {
	padding: 24px 18px;
	border-right: 1px solid #333;
	text-align: center;
}

.ilp-facts-band > div:last-child {
	border-right: 0;
}

.ilp-facts-band dt {
	margin-bottom: 5px;
	color: #bcb9b3;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ilp-facts-band dd {
	margin: 0;
	color: var(--ilp-gold);
	font-family: var(--ilp-serif);
	font-size: 1.18rem;
}

.ilp-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.65fr);
	align-items: start;
	gap: 64px;
	margin-top: 72px;
}

.ilp-detail-content {
	min-width: 0;
}

.ilp-description,
.ilp-features {
	padding-bottom: 64px;
}

.ilp-description h2,
.ilp-features h2,
.ilp-contact-panel h2 {
	margin-bottom: 20px;
}

.ilp-description__text {
	color: var(--ilp-muted);
	font-size: 1rem;
	line-height: 1.85;
}

.ilp-features {
	padding-top: 60px;
	border-top: 1px solid var(--ilp-line);
}

.ilp-features ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.ilp-features li {
	display: flex;
	align-items: start;
	gap: 10px;
	color: var(--ilp-muted);
}

.ilp-features li span {
	flex: 0 0 auto;
	color: var(--ilp-gold-deep);
	font-family: var(--ilp-serif);
	font-size: 1.2rem;
}

.ilp-media-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 36px;
}

.ilp-update-note {
	margin-bottom: 0;
	padding: 19px 21px;
	border: 1px solid #d8c291;
	border-radius: 14px;
	color: #5f543c;
	background: #fbf6e9;
	font-size: 0.82rem;
}

.ilp-contact-panel {
	position: sticky;
	top: 30px;
	padding: 34px;
	border: 1px solid var(--ilp-line);
	border-radius: 18px;
	background:
		radial-gradient(circle at 100% 0%, rgb(223 186 107 / 17%), transparent 28%),
		var(--ilp-cream);
	box-shadow: 0 13px 36px rgb(23 23 23 / 7%);
}

.ilp-contact-panel > p:not(.ilp-eyebrow) {
	margin-bottom: 0;
	color: var(--ilp-muted);
}

.ilp-contact-form {
	display: grid;
	gap: 16px;
	margin-top: 26px;
}

.ilp-contact-form .ilp-button {
	width: 100%;
}

.ilp-contact-form .ilp-consent {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 9px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.55;
}

.ilp-contact-form .ilp-consent input {
	width: 18px;
	min-height: 18px;
	margin-top: 2px;
}

.ilp-contact-form .ilp-consent a {
	color: var(--ilp-gold-deep);
	font-weight: 700;
}

.ilp-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.ilp-form-message {
	margin: 18px 0 0;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 0.86rem;
	line-height: 1.5;
}

.ilp-form-message--success {
	border: 1px solid #4e8463;
	color: #17482a;
	background: #e7f5ec;
}

.ilp-form-message--error {
	border: 1px solid #b66262;
	color: #6d1d1d;
	background: #fff0f0;
}

.ilp-dialog {
	width: min(1100px, calc(100% - 30px));
	max-width: 1100px;
	max-height: calc(100dvh - 40px);
	padding: 0;
	border: 0;
	border-radius: 16px;
	color: var(--ilp-ink);
	background: var(--ilp-white);
	box-shadow: 0 30px 100px rgb(0 0 0 / 45%);
}

.ilp-dialog::backdrop {
	background: rgb(0 0 0 / 80%);
}

.ilp-dialog__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	color: var(--ilp-white);
	background: var(--ilp-black);
}

.ilp-dialog__head span,
.ilp-dialog__head strong {
	display: block;
}

.ilp-dialog__head span {
	color: var(--ilp-gold);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ilp-dialog__head button {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	padding: 0;
	border: 1px solid #555;
	border-radius: 50%;
	color: var(--ilp-white);
	background: transparent;
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
}

.ilp-dialog > img {
	width: 100%;
	max-height: calc(100dvh - 170px);
	object-fit: contain;
	background: #111;
}

.ilp-dialog > p {
	margin: 0;
	padding: 14px 22px 18px;
	color: var(--ilp-muted);
	font-size: 0.78rem;
}

.ilp-property-detail--empty .ilp-results-content {
	min-height: 620px;
	display: grid;
	align-items: center;
}

@media (max-width: 980px) {
	.ilp-filter-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ilp-filter-form .ilp-button {
		width: 100%;
	}

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

	.ilp-results-heading,
	.ilp-detail-heading,
	.ilp-detail-grid {
		grid-template-columns: 1fr;
	}

	.ilp-result-count,
	.ilp-detail-price-wrap {
		justify-self: start;
		text-align: left;
	}

	.ilp-gallery {
		grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.75fr);
	}

	.ilp-gallery-main {
		min-height: 460px;
	}

	.ilp-gallery-thumbs button {
		min-height: 224px;
	}

	.ilp-facts-band {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ilp-facts-band > div:nth-child(3n) {
		border-right: 0;
	}

	.ilp-facts-band > div:nth-child(n+4) {
		border-top: 1px solid #333;
	}

	.ilp-detail-grid {
		gap: 48px;
	}

	.ilp-contact-panel {
		position: static;
	}
}

@media (max-width: 680px) {
	:root {
		--ilp-shell: min(100% - 28px, 1180px);
	}

	.ilp h1 {
		font-size: clamp(2.45rem, 13vw, 4.15rem);
	}

	.ilp h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.ilp-search-hero {
		min-height: 0;
	}

	.ilp-search-hero__inner {
		padding-top: 44px;
		padding-bottom: 34px;
	}

	.ilp-search-hero__copy h1 {
		margin-bottom: 18px;
	}

	.ilp-filter-form {
		grid-template-columns: 1fr;
		gap: 11px;
		margin-top: 32px;
		padding: 12px;
		border-radius: 18px;
	}

	.ilp-filter-form .ilp-button {
		min-height: 52px;
	}

	.ilp-results-content {
		padding: 70px 0;
	}

	.ilp-results-heading {
		gap: 18px;
		margin-bottom: 34px;
	}

	.ilp-property-grid {
		grid-template-columns: 1fr;
	}

	.ilp-property-card {
		border-radius: 18px;
	}

	.ilp-card-body {
		padding: 22px;
	}

	.ilp-card-footer {
		align-items: start;
		flex-direction: column;
	}

	.ilp-empty-state {
		padding: 52px 22px;
	}

	.ilp-empty-mark {
		font-size: 3.7rem;
	}

	.ilp-detail-intro {
		padding: 44px 0 38px;
	}

	.ilp-detail-heading {
		gap: 26px;
	}

	.ilp-detail-heading h1 {
		font-size: clamp(2.3rem, 11vw, 3.65rem);
	}

	.ilp-detail-main {
		padding: 28px 0 70px;
	}

	.ilp-gallery {
		grid-template-columns: 1fr;
	}

	.ilp-gallery-main {
		min-height: 330px;
	}

	.ilp-gallery-thumbs {
		grid-template-columns: 1fr 1fr;
	}

	.ilp-gallery-thumbs button {
		min-height: 165px;
	}

	.ilp-gallery-placeholder {
		min-height: 330px;
		padding: 28px;
	}

	.ilp-facts-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 14px;
	}

	.ilp-facts-band > div,
	.ilp-facts-band > div:nth-child(3n) {
		border-right: 1px solid #333;
	}

	.ilp-facts-band > div:nth-child(2n) {
		border-right: 0;
	}

	.ilp-facts-band > div:nth-child(n+3) {
		border-top: 1px solid #333;
	}

	.ilp-detail-grid {
		gap: 40px;
		margin-top: 54px;
	}

	.ilp-description,
	.ilp-features {
		padding-bottom: 50px;
	}

	.ilp-features {
		padding-top: 48px;
	}

	.ilp-features ul {
		grid-template-columns: 1fr;
	}

	.ilp-contact-panel {
		padding: 25px 22px;
	}

	.ilp-dialog__head strong {
		max-width: 230px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

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