/* ============================================================================
   LK Lettings — Block styles
   Loaded after style.css. Premium, flat, art-deco. No rounded corners.
   ============================================================================ */


/* ----------------------------------------------------------------------------
   Unified carousel chrome — applies to Swiper AND custom .carousel
   Square outline dots (matching testimonial style), hairline buttons.
   ---------------------------------------------------------------------------- */

/* Square outline pagination dots (Swiper)
   Use !important to override Swiper's own inline opacity/background styles. */
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 0 !important;
	background: transparent !important;
	border: 1px solid currentColor;
	opacity: 1 !important;
	margin: 0 5px !important;
	transition: background var(--transition);
}
.swiper-pagination-bullet-active {
	background: currentColor !important;
}

/* Square outline dots (custom carousel) */
.carousel__dots {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 2rem;
}

.carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 0;
	border: 1px solid currentColor;
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background var(--transition);
}
.carousel__dot.is-active { background: currentColor; }

/* Carousel arrow buttons (used by Swiper + custom + image carousel) — hairline square */
.swiper-button-prev,
.swiper-button-next,
.carousel__prev,
.carousel__next,
.ic-prev,
.ic-next {
	width: 48px;
	height: 48px;
	border-radius: 0;
	background: transparent;
	border: 1px solid currentColor;
	color: currentColor;
	cursor: pointer;
	line-height: 1;
	transition: background var(--transition), color var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.carousel__prev:hover,
.carousel__next:hover,
.ic-prev:hover,
.ic-next:hover {
	background: currentColor;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
	color: var(--color-cream);
}

/* Chevron arrows via ::after — applies to Swiper nav AND .ic-prev/.ic-next */
.swiper-button-prev::after,
.swiper-button-next::after,
.ic-prev::after,
.ic-next::after {
	font-size: 0;
	width: 12px;
	height: 12px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
}
.swiper-button-prev::after,
.ic-prev::after { transform: rotate(-135deg); margin-left: 4px; }
.swiper-button-next::after,
.ic-next::after { transform: rotate(45deg); margin-right: 4px; }

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after,
.ic-prev:hover::after,
.ic-next:hover::after {
	border-color: var(--color-cream);
}

/* Carousels nest within sections inheriting colour, so dots/buttons auto-invert */


/* ----------------------------------------------------------------------------
   Page Title block (hero)
   ---------------------------------------------------------------------------- */
.block-page-title {
	position: relative;
	min-height: clamp(480px, 55vh, 660px); /* medium default */
	display: flex;
	align-items: center;
	color: var(--color-cream);
	overflow: hidden;
	background: var(--color-gray);
}

/* Height variants */
.block-page-title--height-compact { min-height: clamp(340px, 45vh, 480px); }
.block-page-title--height-medium  { min-height: clamp(480px, 55vh, 660px); }
.block-page-title--height-large   { min-height: clamp(600px, 78vh, 920px); }
.block-page-title--height-full    { min-height: 100svh; }

.block-page-title__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.block-page-title__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block-page-title__overlay {
	position: absolute;
	inset: 0;
	display: block;
	pointer-events: none;
}

.block-page-title__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: clamp(4rem, 9vw, 8rem);
	padding-bottom: clamp(4rem, 9vw, 8rem);
}

.block-page-title__heading {
	color: var(--color-cream);
	font-size: var(--fs-h1);
	max-width: 22ch;
	margin: 0 0 1rem;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.block-page-title__desc {
	max-width: 56ch;
	font-size: var(--fs-lead);
	color: var(--color-cream);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
	opacity: 0.92;
}

/* Centered */
.block-page-title--align-center .block-page-title__inner { text-align: center; }
.block-page-title--align-center .block-page-title__heading,
.block-page-title--align-center .block-page-title__desc { margin-left: auto; margin-right: auto; }
.block-page-title--align-center .page-search-wrap        { justify-content: center; }
.block-page-title--align-center .page-search             { margin-left: auto; margin-right: auto; }

/* Large heading variant */
.block-page-title--large .block-page-title__heading {
	font-size: var(--fs-display);
	line-height: 0.95;
	max-width: 18ch;
}

/* Uppercase variant */
.block-page-title--uppercase .block-page-title__heading {
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.block-page-title--uppercase .block-page-title__desc {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
}

/* Search + badge */
.page-search-wrap {
	display: flex;
	align-items: flex-end;
	gap: clamp(1.5rem, 4vw, 3rem);
	flex-wrap: wrap;
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
	position: relative;
}

.page-search-wrap .page-search {
	margin-top: 0;
	flex: 1 1 480px;
	max-width: 760px;
}

.page-search-wrap__badges {
	display: none;
}

.page-search-wrap__badge {
	flex: 0 0 auto;
	width: clamp(80px, 8vw, 112px);
}
.page-search-wrap__badge img { width: 100%; height: auto; }

/* Under the form up to 1400px — no room to sit beside it without crowding */
@media (min-width: 768px) {
	.page-search-wrap__badges {
		display: flex;
		flex-direction: row;
		flex-basis: 100%; /* forces its own line under the search form */
		align-items: flex-end;
		gap: clamp(0.6rem, 1.2vw, 1rem);
	}

	.block-page-title--align-center .page-search-wrap__badges {
		justify-content: center;
	}
}

/* Beside the form from 1400px up — constrained by the reserved padding-right */
@media (min-width: 1400px) {
	.page-search-wrap {
		padding-right: clamp(310px, 27vw, 450px);
	}

	.page-search-wrap__badges {
		flex-basis: auto;
		position: absolute;
		right: 0;
		bottom: -10px;
	}

	.page-search-wrap__badge {
		width: clamp(80px, 6vw, 100px);
	}
}

/* Badges shown without the search form (no absolute anchor available) */
.block-page-title__badges {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
	gap: clamp(0.6rem, 1.2vw, 1rem);
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.block-page-title--align-center .block-page-title__badges { justify-content: center; }

.block-page-title__badge {
	flex: 0 0 auto;
	width: clamp(88px, 9vw, 120px);
}
.block-page-title__badge img { width: 100%; height: auto; }

.block-page-title--has-badge.block-page-title { min-height: clamp(540px, 80vh, 820px); }

/* Page search (location-only) */
.page-search {
	background: transparent;
	display: block;
	max-width: 760px;
	width: 100%;
	margin-top: 2rem;
}

.page-search__tabs {
	display: flex;
	gap: 0;
}

.page-search__tab {
	background: var(--color-cream);
	border: 0;
	padding: 0.85rem 1.75rem;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-ink);
	cursor: pointer;
	opacity: 0.6;
	transition: opacity var(--transition), background var(--transition), color var(--transition);
	text-decoration: none;
}

.page-search__tab.is-active { opacity: 1; }
a.page-search__tab:hover { opacity: 1; background: var(--color-secondary); color: var(--color-cream); }

.page-search__body {
	background: var(--color-white);
	padding: 0.85rem;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.6rem;
	align-items: stretch;
}

/* Inputs + selects: white background, clear ink text. */
.page-search__input,
.page-search__select {
	min-width: 0;
	background: var(--color-cream);
	color: var(--color-ink);
	border: 1px solid var(--color-line);
	font-family: var(--font-body);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0 1.2rem;
	line-height: 1.2;
}
.page-search__input::placeholder { color: var(--color-muted); letter-spacing: normal; text-transform: none; }

.page-search__select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	padding-right: 2.6rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231a1a1a' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.1rem center;
}
.page-search__input:focus,
.page-search__select:focus { outline: none; border-color: var(--color-primary); }

/* Location and beds share the row equally (50:50). */
.page-search__input,
.page-search__select--location,
.page-search__beds { flex: 1 1 0; min-width: 0; }

/* .page-search__submit picks up its button styling globally; even height here. */
.page-search__submit {
	min-height: 56px;
	padding-left: 2.2rem;
	padding-right: 2.2rem;
	flex: 0 0 auto;
}

/* On smaller screens keep it to location only. */
@media (max-width: 700px) {
	.page-search__beds { display: none; }
}
@media (max-width: 640px) {
	.page-search__body { flex-direction: column; }
	.page-search__input,
	.page-search__select,
	.page-search__submit { width: 100%; padding: 15px !important; }
}


/* ----------------------------------------------------------------------------
   Logo slider — space-between, grayscale till hover
   ---------------------------------------------------------------------------- */
.block-logo-slider .eyebrow {
	margin-bottom: 1rem;
	justify-content: center;
}

.block-logo-slider .container { text-align: center; }

.logo-track {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: space-between;
}

.logo-track__item {
	flex: 1 1 auto;
	max-width: 180px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
}

.logo-track__item img {
	max-height: 56px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.55;
	transition: filter var(--transition), opacity var(--transition);
}

.logo-track__item:hover img,
.logo-track__item a:hover img {
	filter: grayscale(0);
	opacity: 1;
}


/* ----------------------------------------------------------------------------
   Text & Image block
   ---------------------------------------------------------------------------- */
.block-text-image .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}

.block-text-image--image-right .block-text-image__image { order: 2; }

.block-text-image__image {
	position: relative;
}

.block-text-image__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Aspect ratio — applied when image_ratio field is set */
.block-text-image__image img[data-ratio] {
	object-fit: cover;
	object-position: center;
}
.block-text-image__image img[data-ratio="1-1"]  { aspect-ratio: 1 / 1; }
.block-text-image__image img[data-ratio="4-3"]  { aspect-ratio: 4 / 3; }
.block-text-image__image img[data-ratio="3-2"]  { aspect-ratio: 3 / 2; }
.block-text-image__image img[data-ratio="16-9"] { aspect-ratio: 16 / 9; }
.block-text-image__image img[data-ratio="3-4"]  { aspect-ratio: 3 / 4; }
.block-text-image__image img[data-ratio="2-3"]  { aspect-ratio: 2 / 3; }

/* Optional deco corner brackets around the image */
.block-text-image__image::before,
.block-text-image__image::after {
	content: "";
	position: absolute;
	width: 36px;
	height: 36px;
	border: 1px solid currentColor;
	opacity: 0.25;
	pointer-events: none;
}
.block-text-image__image::before { top: -10px; left: -10px;  border-right: 0; border-bottom: 0; }
.block-text-image__image::after  { bottom: -10px; right: -10px; border-left: 0;  border-top: 0;    }

.block-text-image__content > * + * { margin-top: 1.1em; }
.block-text-image__content h2     { margin: 0 0 1.5rem; }

/* Eyebrow colour matched to first button style */
.block-text-image .eyebrow--btn-primary                         { color: var(--color-primary); }
.block-text-image .eyebrow--btn-dark                            { color: var(--color-gray); }
.block-text-image .eyebrow--btn-outline,
.block-text-image .eyebrow--btn-outline-light,
.block-text-image .eyebrow--btn-ghost,
.block-text-image .eyebrow--btn-link                            { color: var(--color-ink); }
/* .eyebrow--btn-secondary matches the default eyebrow colour — no override needed */

/* Eyebrow used below the heading (e.g. job title / subtitle) */
.block-text-image__content h2:has(+ .eyebrow--below) {
	margin-bottom: 0.35rem;
}

.block-text-image__content .eyebrow--below {
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: var(--fs-lead);
	font-weight: 400;
	margin: 0 0 0;
}

.block-text-image__actions {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.block-text-image .container { grid-template-columns: 1fr; }
	.block-text-image--image-right .block-text-image__image { order: 0; }
}


/* ----------------------------------------------------------------------------
   Testimonial Carousel
   ---------------------------------------------------------------------------- */
.block-testimonials { text-align: center; }

/* Art-deco corner brackets at the section edges — diagonal pair, full-width variant */
.block-testimonials::before,
.block-testimonials::after {
	content: "";
	position: absolute;
	width: 44px;
	height: 44px;
	border: 1px solid currentColor;
	opacity: 0.18;
	pointer-events: none;
}
.block-testimonials::before { top: 24px;    left: 24px;    border-right: 0; border-bottom: 0; }
.block-testimonials::after  { bottom: 24px; right: 24px;  border-left: 0;  border-top: 0; }


.testimonial__quote {
	font-family: var(--font-heading);
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	line-height: 1.4;
	margin: 0 0 1.5rem;
	margin-left: auto;
	margin-right: auto;
}

.testimonial__divider {
	width: 56px;
	height: 1px;
	background: currentColor;
	opacity: 0.4;
	margin: 1.5rem auto;
}

.testimonial__author {
	font-size: 0.78rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0.85;
}


/* ----------------------------------------------------------------------------
   Service Cards
   ---------------------------------------------------------------------------- */
.service-cards__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	color: var(--color-cream);
	background: var(--color-gray);
	min-height: 360px;
	position: relative;
	transition: transform var(--transition);
}

a.service-card:hover {
	transform: translateY(-4px);
	color: var(--color-cream);
}

.service-card__image { aspect-ratio: 4/3; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; }

.service-card__body {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card__eyebrow {
	font-family: var(--font-body);
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0.8;
	margin: 0;
}

.service-card__title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	margin: 0;
	color: var(--color-cream);
	line-height: 1.15;
}

.service-card--primary     { background: var(--color-primary); }
.service-card--secondary   { background: var(--color-secondary); }
.service-card--gray        { background: var(--color-gray); }
.service-card--purple      { background: #6f6989; }
.service-card--terracotta  { background: #9B6358; }
.service-card--olive       { background: #556A3A; }
.service-card--slate       { background: #7A8C96; }
.service-card--mauve       { background: #9B8080; }

/* — Process-arrow variant ————————————————————————— */
.service-cards__grid--has-arrows {
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 0;
}
.service-cards__grid--has-arrows .service-card {
	flex: 1;
	min-width: 0;
}
.service-cards__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2rem;
	color: var(--color-gray);
	font-size: 1.5rem;
	line-height: 1;
	opacity: 0.45;
}

@media (max-width: 1100px) {
	.service-cards__grid { grid-template-columns: repeat(2, 1fr); }
	.service-cards__grid--has-arrows {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	.service-cards__arrow { display: none; }
}
@media (max-width: 540px) {
	.service-cards__grid,
	.service-cards__grid--has-arrows { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------------------
   CTA Block
   ---------------------------------------------------------------------------- */
.block-cta { text-align: center; }
.block-cta .container { max-width: 880px; }
.block-cta__desc { max-width: 56ch; margin: 0 auto 2rem; font-size: var(--fs-lead); }

/*
 * Art-deco frame — all four corners.
 * The section's ::before/::after supply TL + BR (same diagonal as
 * testimonials, so the family reads). Two aria-hidden spans supply
 * TR + BL to complete the rectangle, making this block distinctly
 * "framed" rather than merely hinted-at.
 * Slightly smaller (38 px) and a hair brighter so it holds its own
 * against the section's background color.
 */
.block-cta::before,
.block-cta::after,
.block-cta__deco::before,
.block-cta__deco::after {
	content: "";
	position: absolute;
	width: 38px;
	height: 38px;
	border: 1px solid currentColor;
	opacity: 0.22;
	pointer-events: none;
}
/* TL */
.block-cta::before        { top: 20px;    left: 20px;    border-right: 0; border-bottom: 0; }
/* BR */
.block-cta::after         { bottom: 20px; right: 20px;   border-left: 0;  border-top: 0;    }
/* TR span */
.block-cta__deco--tr      { position: absolute; top: 0; right: 0; width: 0; height: 0; }
.block-cta__deco--tr::before  { top: 20px;    right: 20px;   border-left: 0;  border-bottom: 0; }
.block-cta__deco--tr::after   { display: none; }
/* BL span */
.block-cta__deco--bl      { position: absolute; bottom: 0; left: 0; width: 0; height: 0; }
.block-cta__deco--bl::before  { bottom: 20px;  left: 20px;    border-right: 0; border-top: 0;    }
.block-cta__deco--bl::after   { display: none; }

.block-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2.3rem;
}


/* ----------------------------------------------------------------------------
   Image Carousel — full-bleed, centered, custom infinite scroll.

   Layout:
   - .swiper-outer is a direct child of <section>, naturally full-width.
   - .swiper-outer clips overflowing slides (overflow:hidden).
   - .image-carousel__track is a flex row; JS translates it.
   - Active (centred) slide is bright; siblings dim.
   - .ic-prev/.ic-next are positioned by JS, centred on the slide edges.
   - Gap between slides is large enough to comfortably contain the arrows.
   ---------------------------------------------------------------------------- */

/* Heading sits in its own .container above the carousel */
.block-image-carousel > .container {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.block-image-carousel .section__header {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: center;

	h2 {
		margin-bottom: 0;
	}
}

/* Outer: full width, clips overflowing slides */
.block-image-carousel .swiper-outer {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* "View all properties" CTA below the slider (properties source only) */
.image-carousel__cta {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* Carousel root */
.image-carousel {
	position: relative;
	padding-bottom: 3.5rem; /* space for pagination dots */
}

/* Sliding track — JS drives translateX */
.image-carousel__track {
	display: flex;
	align-items: flex-start;
	will-change: transform;
	user-select: none;
	cursor: grab;
}
.image-carousel__track:active { cursor: grabbing; }

/* Individual slides — width set by JS */
.image-carousel__slide {
	flex: 0 0 auto;
	opacity: 0.35;
	filter: saturate(0.6);
	transition: opacity var(--transition-slow), filter var(--transition-slow);
	pointer-events: none; /* only the active slide is interactive */
	position: relative;
}
.image-carousel__slide.is-active {
	opacity: 1;
	filter: none;
	pointer-events: auto;
}

/* top-left */
.image-carousel__slide::before { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
/* top-right */
.image-carousel__slide::after  { top: -6px; right: -6px; border-left: 0; border-bottom: 0; }

/* Span that mirrors the image area so bottom corners align with image bottom */
.image-carousel__corners {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	aspect-ratio: var(--image-carousel-aspect, 4 / 3);
	pointer-events: none;
	z-index: 3;
}

/* bottom-left */
.image-carousel__corners::before { bottom: -6px; left: -6px; border-right: 0; border-top: 0; }
/* bottom-right */
.image-carousel__corners::after  { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }

/* Image container */
.image-carousel__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: var(--image-carousel-aspect, 4 / 3);
	overflow: hidden;
	background: var(--color-gray);
}

.image-carousel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.image-carousel__slide.is-active .image-carousel__media:hover img { transform: scale(1.05); }

/* Slide text content */
.image-carousel__body {
	padding: 1.5rem 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.image-carousel__title {
	font-family: var(--font-heading);
	font-size: clamp(1.15rem, 1.4vw, 1.4rem);
	margin: 0 0 0.4rem;
	color: inherit;
}

.image-carousel__caption {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: inherit;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color var(--transition), gap var(--transition);
}

a.image-carousel__caption:hover { color: var(--color-secondary); gap: 1rem; }

.image-carousel__price {
	font-family: var(--font-body);
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-primary);
	white-space: nowrap;
	flex-shrink: 0;
}

.image-carousel__arrow {
	width: 32px;
	height: 11px;
	flex: 0 0 32px;
	position: relative;
	transition: transform var(--transition);
}
.image-carousel__arrow::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 50%;
	height: 1px;
	background: currentColor;
}
.image-carousel__arrow::after {
	content: "";
	position: absolute;
	right: 0; top: 50%;
	width: 9px; height: 9px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}
a.image-carousel__caption:hover .image-carousel__arrow { transform: translateX(5px); }

/* Pagination dots (square outline — same look as testimonial carousel) */
.image-carousel__pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-top: 1.5rem;
}

.ic-dot {
	/* Reset button defaults that cause non-square rendering */
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	margin: 0;
	/* Explicit square dimensions */
	width: 10px;
	height: 10px;
	min-width: 10px;
	min-height: 10px;
	flex: 0 0 10px;
	box-sizing: border-box;
	border-radius: 0;
	border: 1px solid currentColor;
	background: transparent;
	cursor: pointer;
	transition: background var(--transition);
}
.ic-dot.is-active { background: currentColor; }

/* Nav arrows — .ic-prev / .ic-next.
   JS sets left / right / top to align with the active slide edges.
   Solid white face, dark chevron, primary fill on hover. */
.block-image-carousel .ic-prev,
.block-image-carousel .ic-next {
	position: absolute;
	z-index: 10;
	top: 50%; /* overridden by JS */
	transform: translateY(-50%);
	background: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-ink);
}
.block-image-carousel .ic-prev { left: 8px; }  /* overridden by JS */
.block-image-carousel .ic-next { right: 8px; } /* overridden by JS */

.block-image-carousel .ic-prev:hover,
.block-image-carousel .ic-next:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-cream);
}

/* Single slide: nothing to navigate between, so drop the carousel chrome
   and show one sensibly-sized, centred card instead of a full-bleed stretch. */
.image-carousel--single {
	padding-bottom: 0;
}
.image-carousel--single .image-carousel__track {
	justify-content: center;
	cursor: default;
}
.image-carousel--single .image-carousel__slide {
	flex: 0 1 auto;
	width: min(100%, 640px);
	opacity: 1;
	filter: none;
	pointer-events: auto;
}


/* ----------------------------------------------------------------------------
   Property Carousel ("Recently let")
   ---------------------------------------------------------------------------- */
.block-property-carousel .section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
	gap: 1.5rem;
	flex-wrap: wrap;
}

.property-card {
	display: grid;
	grid-template-columns: minmax(300px, 1.1fr) 1fr;
	background: var(--color-primary);
	color: var(--color-cream);
	overflow: hidden;
	min-height: 480px;
}

.property-card__image {
	overflow: hidden;
	position: relative;
}

.property-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-card__info {
	padding: clamp(1.75rem, 3vw, 2.5rem);
	display: flex;
	flex-direction: column;
}

.property-card__title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	margin: 0 0 0.5rem;
	color: var(--color-cream);
	line-height: 1.15;
}

.property-card__price {
	font-weight: 500;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
	margin: 0 0 1.5rem;
	opacity: 0.92;
}

.property-card__features {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	flex: 1;
}

.property-card__features li {
	display: flex;
	justify-content: space-between;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(248, 247, 241, 0.25);
	font-size: 0.9rem;
}
.property-card__features li:last-child { border-bottom: 0; }

.property-card__cta .btn {
	align-self: flex-start;
	--btn-bg: var(--color-cream); --btn-bd: var(--color-cream); --btn-fg: var(--color-ink);
	--btn-bg-h: var(--color-ink); --btn-bd-h: var(--color-ink); --btn-fg-h: var(--color-cream);
}

@media (max-width: 720px) {
	.property-card { grid-template-columns: 1fr; }
	.property-card__image { order: -1; min-height: 280px; aspect-ratio: 4/3; }
}

/* Custom carousel chrome inherited from top of file */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel__slide {
	flex: 0 0 100%;
	min-width: 0;
}

.carousel__prev,
.carousel__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}
.carousel__prev { left: 1rem; }
.carousel__next { right: 1rem; }


/* ----------------------------------------------------------------------------
   Comparison Table
   ---------------------------------------------------------------------------- */
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 2.5rem;
}

.comparison-table th,
.comparison-table td {
	padding: 1.1rem;
	border-top: 1px solid var(--color-line);
	text-align: center;
	vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
	text-align: left;
	font-weight: 500;
}

.comparison-table thead th {
	border-top: 0;
	padding-bottom: 2rem;
	font-family: var(--font-body);
	font-weight: 600;
}

.comparison-table .col-title {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 400;
	margin-bottom: 0.25rem;
}

.comparison-table .col-price {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-bottom: 1rem;
}

.comparison-table .col--primary .col-title { color: var(--color-primary); }
.comparison-table .col--secondary .col-title { color: var(--color-secondary); }
.comparison-table .col--dark .col-title { color: var(--color-ink); }

.comparison-table .check { display: inline-block; line-height: 0; }

@media (max-width: 720px) {
	.comparison-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}


/* ----------------------------------------------------------------------------
   FAQs
   ---------------------------------------------------------------------------- */
.faq-category {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
	border-top: 1px solid var(--color-line);
}

.faq-category:last-child { border-bottom: 1px solid var(--color-line); }

.faq-category__title {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-secondary);
	margin: 0;
	padding-top: 1.25rem; /* align with first FAQ question text */
}

.faq-list { list-style: none; margin: 0; padding: 0; }

.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-item:last-child { border-bottom: 0; }

.faq-item__question {
	display: flex;
	width: 100%;
	background: none;
	border: 0;
	padding: 1.25rem 0;
	font-family: var(--font-heading);
	font-size: clamp(1.05rem, 1.2vw, 1.25rem);
	font-weight: 400;
	text-align: left;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	color: inherit;
}

.faq-item__icon {
	width: 32px;
	height: 32px;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	flex: 0 0 32px;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.faq-item.is-open .faq-item__icon {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
}
.faq-item.is-open .faq-item__icon::before { content: "−"; color: var(--color-cream); }
.faq-item:not(.is-open) .faq-item__icon::before { content: "+"; color: var(--color-secondary); }

.faq-item__answer {
	display: none;
	padding: 0 0 1.5rem;
	max-width: 70ch;
}

.faq-item.is-open .faq-item__answer { display: block; }

.faq-item__cta { margin-top: 0.75rem; }

@media (max-width: 720px) {
	.faq-category { grid-template-columns: 1fr; gap: 0.75rem; }
}


/* ----------------------------------------------------------------------------
   Newsletter CTA
   ---------------------------------------------------------------------------- */
.block-newsletter-cta .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}

/* The whole sign-up form sits in its own card so it reads clearly regardless
   of the section's background colour. */
.newsletter-form {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	padding: clamp(2rem, 4vw, 2.75rem);
}

/* The CF7 form template (see cf7-form-templates.md → Newsletter Signup)
   wraps the email field + submit button in a <div class="newsletter-form__row">
   so they sit inline, with the consent checkbox on its own line below. */
.newsletter-form__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1rem;
}

/* CF7 wraps the email field in a <span class="wpcf7-form-control-wrap">;
   let it (and only it) grow to fill the row. Stack as a column so CF7's
   validation tip (.wpcf7-not-valid-tip) lands below the input instead of
   squeezing it as a sibling flex item. */
.newsletter-form__row .wpcf7-form-control-wrap {
	flex: 1 1 240px;
	display: flex;
	flex-direction: column;
}

.newsletter-form input[type="email"] {
	padding: 1.15rem 1.25rem;
	flex: 1;
	width: 100%;
}

/* Match the button height exactly — the input's padding/line-height and the
   .btn's padding/line-height don't land on the same px value on their own,
   so pin both to the same explicit height (box-sizing: border-box means
   padding is included, so text still centres correctly). */
.newsletter-form__row input[type="email"],
.newsletter-form__row input[type="submit"] {
	height: 3.75rem;
}

.newsletter-form__row input[type="submit"] {
	flex: 0 0 auto;
	margin-top: 0; /* override CF7/.btn default top margin — sits inline with the email field */
	white-space: nowrap;
}

/* CF7 always renders <span class="wpcf7-spinner"> right after the submit
   button — even while invisible (visibility:hidden) it stays
   display:inline-block with 24px width + 24px side margins, so it sits in
   the flex row as a phantom item and throws off the button/input sizing.
   Take it out of the flow entirely; the disabled submit button is enough
   of a busy indicator here. */
.newsletter-form__row .wpcf7-spinner {
	display: none;
}

/* Consent checkbox sits below the email/submit row */
.newsletter-form .cf7-consent {
	margin-top: 1.25rem;
}

@media (max-width: 480px) {
	.newsletter-form__row { flex-direction: column; }
	.newsletter-form__row input[type="submit"] { width: 100%; }
}

@media (max-width: 720px) {
	.block-newsletter-cta .container { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------------------
   Contact block
   ---------------------------------------------------------------------------- */

/* Section header — heading + ruled divider + subheading */
.block-contact__header {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	max-width: 680px;
}

.block-contact__heading {
	margin-bottom: 0.75rem;
}

/* Art-deco hairline rule — mirrors valuation page headings */
.block-contact__divider {
	width: 200px;
	height: 1px;
	background: currentColor;
	opacity: 0.2;
	margin: 1rem 0 1.5rem;
}

.block-contact__subheading {
	font-size: var(--fs-lead);
	color: var(--color-muted);
	max-width: 60ch;
	margin: 0;
}

/* Dark-section overrides */
.section[data-bg="dark"]      .block-contact__subheading,
.section[data-bg="primary"]   .block-contact__subheading,
.section[data-bg="secondary"] .block-contact__subheading {
	color: var(--color-cream);
	opacity: 0.8;
}

/* Body: full-width form, or sidebar + form grid */
.block-contact__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
}

.block-contact__body--has-sidebar {
	grid-template-columns: 380px 1fr;
	align-items: start;
}

/* ---- Sidebar ---- */
.block-contact__sidebar {
	display: flex;
	flex-direction: column;
	gap: 0; /* sections share hairline borders, so no gap */
	position: sticky;
	top: calc(var(--header-h-scrolled) + 2rem);
}

/* Individual sidebar section — each gets a top border and generous padding */
.block-contact__sidebar-section {
	padding: 1.75rem 0;
	border-top: 1px solid var(--color-line);
}

/* No closing rule needed — the hours table rows supply their own hairlines */


/* Sidebar section heading — eyebrow style matching footer column headings */
.block-contact__sidebar-heading {
	font-family: var(--font-body);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-secondary);
	margin: 0 0 1.25rem;
}

.section[data-bg="dark"]      .block-contact__sidebar-heading,
.section[data-bg="primary"]   .block-contact__sidebar-heading,
.section[data-bg="secondary"] .block-contact__sidebar-heading {
	color: var(--color-cream);
	opacity: 0.7;
}

/*
 * The global .contact-list styles use --color-cream text because they live
 * on the dark footer. Override here so the sidebar reads on light backgrounds.
 */
.block-contact__list {
	gap: 1.1rem; /* a little more breathing room than the footer version */
}

.block-contact__list .contact-list__item {
	font-size: 0.9375rem;
}

.block-contact__list .contact-list__text {
	color: var(--color-ink);
	opacity: 0.85;
}

.block-contact__list a.contact-list__text {
	color: var(--color-ink);
}

.block-contact__list a.contact-list__text:hover {
	color: var(--color-secondary);
	opacity: 1;
}

/* Restore cream text when the whole section is dark */
.section[data-bg="dark"]      .block-contact__list .contact-list__text,
.section[data-bg="primary"]   .block-contact__list .contact-list__text,
.section[data-bg="secondary"] .block-contact__list .contact-list__text {
	color: var(--color-cream);
}

/* ---- Opening hours table ---- */
.block-contact__hours-table {
	width: 100%;
	border-collapse: collapse;
}

.block-contact__hours-row {
	border-bottom: 1px solid var(--color-line);
}

.block-contact__hours-row:first-child {
	border-top: 1px solid var(--color-line);
}

.block-contact__hours-days,
.block-contact__hours-time {
	padding: 0.85rem 0;
	font-size: 0.9rem;
	vertical-align: middle;
}

.block-contact__hours-days {
	font-weight: 500;
	color: var(--color-ink);
	width: 55%;
}

.block-contact__hours-time {
	text-align: right;
	color: var(--color-muted);
	letter-spacing: 0.02em;
}

/* "Closed" days get muted/italic treatment */
.block-contact__hours-row--closed .block-contact__hours-time {
	color: var(--color-muted);
	font-style: italic;
	opacity: 0.65;
}

/* Dark section colour overrides for hours table */
.section[data-bg="dark"]      .block-contact__hours-days,
.section[data-bg="primary"]   .block-contact__hours-days,
.section[data-bg="secondary"] .block-contact__hours-days {
	color: var(--color-cream);
}

.section[data-bg="dark"]      .block-contact__hours-time,
.section[data-bg="primary"]   .block-contact__hours-time,
.section[data-bg="secondary"] .block-contact__hours-time {
	color: rgba(248, 247, 241, 0.65);
}

.section[data-bg="dark"]      .block-contact__hours-row,
.section[data-bg="primary"]   .block-contact__hours-row,
.section[data-bg="secondary"] .block-contact__hours-row,
.section[data-bg="dark"]      .block-contact__hours-row:first-child,
.section[data-bg="primary"]   .block-contact__hours-row:first-child,
.section[data-bg="secondary"] .block-contact__hours-row:first-child {
	border-color: rgba(248, 247, 241, 0.15);
}

/* ---- Full-bleed map strip at section foot ---- */

/* Strip the section's bottom padding so the map sits flush */
.block-contact--has-map {
	padding-bottom: 0;
}

/* Gap between the container content and the map */
.block-contact__map-full {
	margin-top: clamp(5rem, 10vw, 8rem);
	position: relative;
	width: 100%;
	height: clamp(320px, 42vh, 500px);
	overflow: hidden;
}

.block-contact__map-full iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ---- Form column ---- */
.block-contact__form {
	width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
	.block-contact__body--has-sidebar {
		grid-template-columns: 320px 1fr;
	}
}

@media (max-width: 860px) {
	.block-contact__body--has-sidebar {
		grid-template-columns: 1fr;
	}

	.block-contact__sidebar {
		position: static; /* no sticky on mobile */
	}

	.block-contact__map-full {
		height: clamp(240px, 35vh, 380px);
	}
}


/* ----------------------------------------------------------------------------
   Contact Form 7 — global resets & theme integration
   ---------------------------------------------------------------------------- */

/* Remove CF7's default margins that fight our layouts */
.wpcf7 {
	margin: 0 !important;
	padding: 0 !important;
}

.wpcf7 form {
	margin: 0;
}

/* CF7 injects a <br> after each field when autop is on;
   with autop off (our filter) these disappear. Belt-and-braces: */
.wpcf7 br {
	display: none;
}

/* Two-column grid for form fields
   Wrap pairs of fields in <div class="cf7-grid"> inside the CF7 form editor */
.cf7-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem clamp(1rem, 3vw, 2rem);
}

.cf7-full {
	grid-column: 1 / -1;
}

/* Individual labelled field cell */
.cf7-col {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.cf7-col label,
.cf7-full label {
	font-size: var(--fs-small);
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--color-ink);
	display: block;
}

.section[data-bg="dark"]      .cf7-col label,
.section[data-bg="primary"]   .cf7-col label,
.section[data-bg="secondary"] .cf7-col label,
.section[data-bg="dark"]      .cf7-full label,
.section[data-bg="primary"]   .cf7-full label,
.section[data-bg="secondary"] .cf7-full label {
	color: var(--color-cream);
}

/* CF7 wraps every field tag in a <span class="wpcf7-form-control-wrap"> */
.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* All CF7 inputs inherit global style.css form styles.
   These rules apply the same tokens explicitly for specificity.
   IMPORTANT: CF7 also puts the "wpcf7-form-control" class on the *wrapping
   <span>* for acceptance checkboxes (<span class="wpcf7-form-control
   wpcf7-acceptance">), which has no [type] attribute at all — so a
   class-only selector matches it too and box-styles the whole checkbox row.
   Scoping to actual input/textarea/select tags avoids that. */
input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea.wpcf7-form-control,
select.wpcf7-form-control {
	width: 100%;
	padding: 1rem 1.1rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--color-ink);
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 0;
	transition: border-color var(--transition);
}

input.wpcf7-form-control:focus,
textarea.wpcf7-form-control:focus,
select.wpcf7-form-control:focus {
	outline: none;
	border-color: var(--color-ink);
}

input.wpcf7-form-control::placeholder,
textarea.wpcf7-form-control::placeholder {
	color: rgba(37, 39, 38, 0.45);
	opacity: 1;
}

/* File upload field */
.wpcf7-form-control[type="file"] {
	width: 100%;
	padding: 1rem 1.1rem;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 0;
	font-size: 0.875rem;
	color: var(--color-muted);
	cursor: pointer;
}

/* The file upload cell has a dashed drop-zone feel */
.cf7-upload-zone {
	border: 1px dashed var(--color-line);
	background: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 2rem 1.5rem;
	text-align: center;
	color: var(--color-muted);
	font-size: var(--fs-small);
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
	min-height: 140px;
}

.cf7-upload-zone:hover {
	border-color: var(--color-primary);
	background: rgba(122, 115, 151, 0.04);
}

.cf7-upload-zone svg {
	width: 36px;
	height: 36px;
	color: var(--color-primary);
	opacity: 0.7;
}

.cf7-upload-zone input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
}

.cf7-upload-zone .wpcf7-form-control-wrap {
	position: relative;
}

/* Submit button — CF7 generates <input type="submit"> with the class we add */
.wpcf7-submit,
.wpcf7 [type="submit"] {
	margin-top: 1.75rem;
}

/* ---- Acceptance / consent checkbox — square, flat, matches brand controls ---- */
.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: var(--fs-small);
	line-height: 1.5;
}

.wpcf7-acceptance input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	margin: 2px 0 0;
	border: 1px solid var(--color-line);
	background: var(--color-white);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	transition: border-color var(--transition), background var(--transition);
}

.wpcf7-acceptance input[type="checkbox"]:checked {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.wpcf7-acceptance input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid var(--color-cream);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.wpcf7-acceptance input[type="checkbox"]:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--color-cream), 0 0 0 4px var(--color-primary);
}

.wpcf7-acceptance .wpcf7-list-item-label a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* On dark/coloured section backgrounds, keep the consent text and box legible */
.section[data-bg="dark"]      .wpcf7-acceptance label,
.section[data-bg="primary"]   .wpcf7-acceptance label,
.section[data-bg="secondary"] .wpcf7-acceptance label {
	color: var(--color-cream);
}
.section[data-bg="dark"]      .wpcf7-acceptance input[type="checkbox"],
.section[data-bg="primary"]   .wpcf7-acceptance input[type="checkbox"],
.section[data-bg="secondary"] .wpcf7-acceptance input[type="checkbox"] {
	background: transparent;
	border-color: var(--color-line-soft);
}
.section[data-bg="dark"]      .wpcf7-acceptance input[type="checkbox"]:checked,
.section[data-bg="primary"]   .wpcf7-acceptance input[type="checkbox"]:checked,
.section[data-bg="secondary"] .wpcf7-acceptance input[type="checkbox"]:checked {
	background: var(--color-cream);
	border-color: var(--color-cream);
}
.section[data-bg="dark"]      .wpcf7-acceptance input[type="checkbox"]:checked::after,
.section[data-bg="primary"]   .wpcf7-acceptance input[type="checkbox"]:checked::after,
.section[data-bg="secondary"] .wpcf7-acceptance input[type="checkbox"]:checked::after {
	border-color: var(--color-ink);
}

/* ---- CF7 field-level invalid state ---- */

.wpcf7-not-valid .wpcf7-form-control {
	border-color: #c0322a !important;
}

/* Inline tip beneath each invalid field */
.wpcf7-not-valid-tip {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.4rem;
	font-family: var(--font-body);
	font-size: var(--fs-small);
	font-weight: 500;
	color: #c0322a;
	line-height: 1.4;
}

/* Small diamond bullet before the tip text */
.wpcf7-not-valid-tip::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background: currentColor;
	transform: rotate(45deg);
	flex-shrink: 0;
	margin-top: 1px;
}

/* ---- CF7 form-level response output ---- */

/*
 * CF7's own stylesheet targets .wpcf7 .wpcf7-response-output with two-class
 * specificity and also injects margin/border as inline styles. We match that
 * specificity and mark only those properties !important so our styles win
 * without self-conflicting.
 */
.wpcf7 .wpcf7-response-output {
	margin: 2rem 0 0 !important;
	padding: 1rem 1.25rem !important;
	border: 1px solid transparent !important;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.5;
}

/* Success — form.sent state (CF7 5.x) */
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--color-primary) !important;
	background: rgba(122, 115, 151, 0.1);
	color: var(--color-primary);
}

/* Errors — form.invalid / .failed / .unaccepted / .spam states (CF7 5.x) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	border-color: #c0322a !important;
	background: #fef2f2;
	color: #7f1d1d;
}

/* Spinner — hide CF7's default gif, show a CSS ring instead */
.wpcf7 .ajax-loader {
	display: none !important;
}

/* Required asterisk */
.wpcf7 abbr[title] {
	text-decoration: none;
	color: var(--color-secondary);
}

/* Mobile: collapse two-column grid to single column */
@media (max-width: 640px) {
	.cf7-grid {
		grid-template-columns: 1fr;
	}
}
/* ----------------------------------------------------------------------------
   Content Area block
   ---------------------------------------------------------------------------- */

.block-content-area .entry-content {
	margin-top: 1.5rem;
}

.block-content-area .entry-content > * + * {
	margin-top: 1em;
}

.block-content-area__subheading {
	margin-top: 0.5em;
	font-size: var(--text-lg);
	color: inherit;
	opacity: 0.8;
}

.block-content-area__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.block-content-area__actions--center {
	justify-content: center;
}

/* Center-aligned variant: center header text and body copy */
.block-content-area--center .section__header {
	text-align: center;
	margin-bottom: 2rem;
}
.block-content-area--center .eyebrow {
	justify-content: center;
}
.block-content-area--center .block-content-area__body {
	text-align: center;
}

@media (max-width: 640px) {
	.block-content-area__actions {
		flex-direction: column;
	}
}

/* ----------------------------------------------------------------------------
   Property Types block
   Slim data-visualisation panel with percentage bars and optional iconography.
   ---------------------------------------------------------------------------- */

.block-property-types__header {
	margin-bottom: 1.5rem;
}

.block-property-types__title {
	margin: 0 0 0.25em;
}

.block-property-types__subheading {
	margin: 0;
	color: var(--color-muted);
	font-size: var(--text-sm, 0.875rem);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.block-property-types__intro,
.block-property-types__outro {
	max-width: 72ch;
}

.block-property-types__intro {
	margin-bottom: 2rem;
}

.block-property-types__outro {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: var(--hairline);
}

/* Type grid — horizontal row that wraps */
.prop-types {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem 2rem;
}

/* Individual type item */
.prop-type {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

/* Icon — rendered as a mask so it inherits currentColor */
.prop-type__icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	margin-top: 0.15em;
	background-color: currentColor;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

/* Body: label + percentage + bar */
.prop-type__body {
	flex: 1;
	min-width: 0;
}

.prop-type__meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.prop-type__label {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: currentColor;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.prop-type__pct {
	font-family: var(--font-heading, 'Playfair Display', serif);
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

/* Progress bar — hairline container, flat fill */
.prop-type__bar {
	height: 4px;
	background: transparent;
	border: 1px solid currentColor;
	opacity: 0.25;
	position: relative;
}

.prop-type__fill {
	position: absolute;
	inset: 0 auto 0 0;
	height: 100%;
	background: currentColor;
	opacity: 1;
	transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Opacity wrapper trick: raise bar opacity by overriding on parent */
.prop-type__bar {
	opacity: 1;
}
.prop-type__bar::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid currentColor;
	opacity: 0.2;
}
/* Remove the conflicting border from the element itself so ::before handles it */
.prop-type__bar {
	border: none;
}

/* Colour variants — inherit currentColor from section or override here */
.prop-type--primary   { color: var(--color-primary); }
.prop-type--secondary { color: var(--color-secondary); }
.prop-type--dark      { color: var(--color-gray); }
.prop-type--muted     { color: var(--color-muted); }

/* On dark/coloured sections, soften labels but keep accent colours */
.section[data-bg="dark"] .prop-type__label,
.section[data-bg="primary"] .prop-type__label,
.section[data-bg="secondary"] .prop-type__label {
	opacity: 0.7;
}

/* "Dark" variant would be invisible on a dark section — swap to cream */
.section[data-bg="dark"] .prop-type--dark {
	color: var(--color-cream);
}

/* Responsive: single column on small screens */
@media (max-width: 480px) {
	.prop-types {
		grid-template-columns: 1fr;
	}
}


/* ============================================================================
   10ninety Properties: shared, portal, cards, detail, enquiry
   ============================================================================ */

/* Small button modifier (compact padding for card actions, topbar, chips). */
.btn--small {
	padding: 0.7rem 1.3rem;
	min-height: 40px;
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	gap: 0.5rem;
}

/* Base line icon */
.lkl-icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; display: inline-block; vertical-align: middle; }

/* "Let Agreed" — clean flat corner badge (no rotation, consistent at any size). */
.let-agreed-ribbon {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--color-secondary);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.4rem 0.7rem;
	z-index: 4;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	pointer-events: none;
}
.let-agreed-ribbon--lg { top: 16px; left: 16px; font-size: 0.72rem; padding: 0.5rem 0.85rem; }

/* ---------------------------------------------------------------------------
   Portal: sidebar + results
   --------------------------------------------------------------------------- */
.property-portal {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: clamp(1.5rem, 3vw, 2.75rem);
	align-items: start;
}

.property-portal__sidebar {
	position: sticky;
	top: calc(var(--header-h-scrolled) + 1rem);
}

.property-filters {
	background: var(--color-white);
	border: var(--hairline);
	padding: clamp(1rem, 1.5vw, 1.4rem);
}

.property-filters__title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	margin: 0 0 0.9rem;
}

.property-filters__field { margin: 0 0 0.7rem; display: block; }
.property-filters__field label {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-bottom: 0.25rem;
}
.property-filters__field select,
.property-filters__field input[type="text"],
.property-filters__field input[type="number"] {
	width: 100%;
	padding: 0.45rem 0.6rem;
	border: var(--hairline);
	background: var(--color-cream);
	font-family: var(--font-body);
	font-size: 0.88rem;
	color: var(--color-ink);
}
.property-filters__field select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	padding-right: 2.1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231a1a1a' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
}
.property-filters__field--split { display: flex; gap: 0.6rem; }
.property-filters__field--split span { flex: 1; }
.property-filters__field--check label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: none;
	letter-spacing: 0;
	color: var(--color-ink);
	font-size: 0.88rem;
	cursor: pointer;
}
.property-filters__field--check input { width: auto; }
.property-filters .btn--block { margin-top: 0.25rem; }
.property-filters__reset {
	display: block;
	text-align: center;
	margin-top: 0.65rem;
	font-size: 0.8rem;
	color: var(--color-muted);
	text-decoration: underline;
}

/* Results count + sort toolbar, above the grid */
.property-portal__toolbar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	background: var(--color-white);
	border: var(--hairline);
	padding: 0.75rem 1.25rem;
	margin-bottom: 1.5rem;
}
.property-portal__count {
	margin: 0;
	font-weight: 400;
	font-size: 0.9rem;
	color: var(--color-muted);
}
.property-portal__sort {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 0 auto;
}
.property-portal__sort label {
	font-size: 0.76rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-muted);
	white-space: nowrap;
}
.property-portal__sort select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	border: var(--hairline);
	background-color: var(--color-cream);
	font-family: var(--font-body);
	font-size: 0.86rem;
	color: var(--color-ink);
	padding: 0.45rem 2.1rem 0.45rem 0.7rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231a1a1a' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
}

.property-portal__head { margin-bottom: 1.5rem; }
.property-portal__heading { font-family: var(--font-heading); margin: 0 0 0.4rem; }
.property-portal__intro { color: var(--color-muted); margin: 0 0 0.4rem; }
.property-portal__empty { padding: 2rem 0; color: var(--color-muted); }

/* ---------------------------------------------------------------------------
   Property grid cards
   --------------------------------------------------------------------------- */
.property-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.property-card--grid {
	background: var(--color-white);
	border: var(--hairline);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
}
.property-card--grid:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(37, 39, 38, 0.12);
}
.property-card--grid__media {
	display: block;
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--color-cream-2);
}
.property-card--grid__media img { width: 100%; height: 100%; object-fit: cover; }
.property-card--grid__noimg { display: block; width: 100%; height: 100%; background: var(--color-cream-2); }

.property-card--grid__body { padding: 1.1rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.property-card--grid__title { font-family: var(--font-heading); font-size: 1.2rem; line-height: 1.2; margin: 0 0 0.35rem; }
.property-card--grid__title a { color: var(--color-ink); }
.property-card--grid__title a:hover { color: var(--color-secondary); }
.property-card--grid__price { font-weight: 600; color: var(--color-primary-dark); margin: 0 0 0.6rem; }
.property-card--grid__meta {
	list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem;
	padding: 0; margin: 0 0 0.85rem; font-size: 0.82rem; color: var(--color-gray-2);
}
.property-card--grid__meta li { display: inline-flex; align-items: center; gap: 0.35rem; }
.property-card--grid__meta .lkl-icon { width: 18px; height: 18px; color: var(--color-primary); }
.property-card--grid__summary { font-size: 0.88rem; color: var(--color-gray-2); margin: 0 0 1rem; flex: 1; }
.property-card--grid__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Pagination */
.property-pagination {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.5rem; border-top: var(--hairline);
}
.property-pagination__pages { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.property-pagination__item {
	min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--color-primary); background: var(--color-white); color: var(--color-primary);
	font-weight: 600; font-size: 0.86rem; padding: 0 0.6rem;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.property-pagination__item:hover { background: var(--color-primary); color: var(--color-white); }
.property-pagination__item.is-current { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.property-pagination__nav {
	display: inline-flex; align-items: center; gap: 0.4rem;
	height: 44px; padding: 0 1.15rem; border: 1px solid var(--color-primary);
	color: var(--color-primary); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
	transition: background var(--transition), color var(--transition);
}
.property-pagination__nav:hover { background: var(--color-primary); color: var(--color-white); }
.property-pagination__nav .lkl-icon { width: 18px; height: 18px; }
.property-pagination__nav.is-disabled { opacity: 0.35; pointer-events: none; border-color: var(--color-line); color: var(--color-muted); }

/* Friendly empty state */
.property-empty {
	text-align: center;
	padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
	border: 1px dashed var(--color-line);
	background: var(--color-white);
}
.property-empty__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--color-cream-2); color: var(--color-primary);
	margin-bottom: 1.25rem;
}
.property-empty__icon .lkl-icon { width: 30px; height: 30px; }
.property-empty__title { font-family: var(--font-heading); font-size: 1.5rem; margin: 0 0 0.85rem; }
.property-empty__text { color: var(--color-muted); max-width: 460px; margin: 0 auto 1.5rem; }

/* ---------------------------------------------------------------------------
   Property detail
   --------------------------------------------------------------------------- */
.property-detail { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem); }

/* Back link (top, natural back-button position) */
.property-detail__back {
	display: inline-flex; align-items: center; gap: 0.4rem;
	margin-bottom: 1.25rem;
	font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
	color: var(--color-muted);
}
.property-detail__back:hover { color: var(--color-primary); }
.property-detail__back .lkl-icon { width: 18px; height: 18px; }

/* Gallery */
.property-gallery__main {
	position: relative; display: block; width: 100%; padding: 0; border: 0;
	overflow: hidden; background: var(--color-cream-2); aspect-ratio: 16 / 10; cursor: zoom-in;
}
.property-gallery__img { width: 100%; height: 100%; object-fit: cover; }
.property-gallery__zoom {
	position: absolute; right: 12px; bottom: 12px;
	width: 42px; height: 42px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(26, 26, 26, 0.55); color: #fff;
	transition: background var(--transition);
}
.property-gallery__zoom .lkl-icon { width: 20px; height: 20px; }
.property-gallery__main:hover .property-gallery__zoom { background: var(--color-primary); }
.property-gallery__thumbs {
	display: flex; gap: 0.6rem; margin-top: 0.75rem;
	overflow-x: auto; padding-bottom: 0.6rem;
	scrollbar-width: thin; scrollbar-color: var(--color-primary) var(--color-cream-2);
}
.property-gallery__thumbs::-webkit-scrollbar { height: 6px; }
.property-gallery__thumbs::-webkit-scrollbar-track { background: var(--color-cream-2); border-radius: 999px; }
.property-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 999px; }
.property-gallery__thumb {
	flex: 0 0 auto; width: 132px; height: 92px; padding: 0; border: 2px solid transparent;
	overflow: hidden; cursor: pointer; background: var(--color-cream-2);
	transition: border-color var(--transition), opacity var(--transition);
	opacity: 0.75;
}
.property-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.property-gallery__thumb:hover { opacity: 1; }
.property-gallery__thumb.is-active { border-color: var(--color-primary); opacity: 1; }

.property-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
	align-items: start;
}
/* Prevent grid/flex children from forcing horizontal overflow. */
.property-detail__main,
.property-detail__actions { min-width: 0; }
.property-detail__desc { overflow-wrap: anywhere; }

/* Header */
.property-detail__title {
	font-family: var(--font-heading);
	font-size: clamp(1.9rem, 3.2vw, 2.75rem);
	line-height: 1.1;
	margin: 0 0 0.6rem;
}
.property-detail__headline { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1.25rem; padding-bottom: 1.5rem; border-bottom: var(--hairline); }
.property-detail__price { font-size: 1.55rem; font-weight: 600; color: var(--color-primary-dark); }
.property-detail__subtitle { color: var(--color-secondary-dark); font-weight: 500; }

/* Headline stats strip */
.property-stats {
	list-style: none; padding: 0; margin: 1.5rem 0 0;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem; text-align: center;
}
.property-stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; padding: 1rem 0.5rem; background: var(--color-cream-2); }
.property-stat .lkl-icon { width: 26px; height: 26px; color: var(--color-primary); margin-bottom: 0.15rem; }
.property-stat__value { font-family: var(--font-heading); font-size: 1.35rem; line-height: 1; }
.property-stat__label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted); }

.property-detail__desc { margin-top: 1.75rem; }
.property-detail__subhead {
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-gray-2);
	margin: 2.75rem 0 1.15rem;
	padding-bottom: 0.65rem;
	border-bottom: var(--hairline);
	position: relative;
}
.property-detail__subhead::after {
	content: ""; position: absolute; left: 0; bottom: -1px;
	width: 40px; height: 2px; background: var(--color-secondary);
}

/* Features (tick grid) */
.property-features { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem 1.5rem; }
.property-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; }
.property-features .lkl-icon { width: 18px; height: 18px; color: var(--color-secondary); margin-top: 0.15rem; }

/* Property information (icon + label/value grid).
   1px grid gap over a line-coloured background gives clean single dividers. */
.property-facts {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--color-line);
	border: 1px solid var(--color-line);
}
.property-fact { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.15rem; background: var(--color-white); }
.property-fact .lkl-icon { width: 22px; height: 22px; color: var(--color-primary); flex: 0 0 auto; }
.property-fact__text { min-width: 0; }
.property-fact__label { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-muted); margin: 0; }
.property-fact__value { margin: 0.1rem 0 0; font-weight: 600; }

.property-detail__map { margin-top: 0.5rem; }
.property-detail__map iframe { display: block; width: 100%; }
.property-detail__tenancy { margin-top: 2rem; font-size: 0.78rem; line-height: 1.6; color: var(--color-muted); border-top: var(--hairline); padding-top: 1.25rem; }

/* Sidebar cards */
.property-detail__actions { position: sticky; top: calc(var(--header-h-scrolled) + 1rem); display: flex; flex-direction: column; gap: 1rem; }
.property-detail__card { background: var(--color-white); border: var(--hairline); padding: 1.5rem; }
.property-detail__card--cta { display: flex; flex-direction: column; gap: 0.75rem; }
.property-detail__card-title { font-family: var(--font-heading); font-size: 1.15rem; margin: 0 0 0.85rem; }
.property-links { list-style: none; margin: 0; padding: 0; }
.property-links li + li { border-top: var(--hairline); }
.property-links a { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0; font-size: 0.92rem; color: var(--color-ink); }
.property-links a:hover { color: var(--color-primary); }
.property-links .lkl-icon { width: 20px; height: 20px; color: var(--color-primary); }

/* Enquiry banner on arrange-viewing */
.enquiry-banner {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1rem;
	background: var(--color-cream-2); border-left: 4px solid var(--color-primary);
	padding: 1rem 1.25rem; margin-bottom: 1.75rem;
}
.enquiry-banner__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); }
.enquiry-banner__property { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-ink); }
.enquiry-banner__price { font-weight: 600; color: var(--color-primary-dark); }
.lkl-enquiry-property input[readonly] { background: var(--color-cream-2); cursor: default; }

/* Responsive */
@media (max-width: 900px) {
	.property-portal { grid-template-columns: 1fr; }
	.property-portal__sidebar { position: static; }
	.property-detail__layout { grid-template-columns: 1fr; }
	.property-detail__actions { position: static; }
}
@media (max-width: 700px) {
	.property-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.property-grid { grid-template-columns: 1fr; }
	.property-facts { grid-template-columns: 1fr; }
	.property-portal__toolbar { flex-direction: column; align-items: flex-start; }
	.property-portal__sort { margin-left: 0; width: 100%; }
	.property-portal__sort select { flex: 1; }
}