/* ============================================================================
   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);
}

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

.page-search-wrap__badge {
	display: none;
	flex: 0 0 auto;
	max-width: 180px;
}
.page-search-wrap__badge img { width: 100%; height: auto; }

@media (min-width: 1024px) {
	.page-search-wrap__badge { display: block; }
}

.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-cream);
	padding: 0.85rem;
	display: flex;
	gap: 0.85rem;
	align-items: stretch;
}

.page-search__input {
	flex: 1;
	background: var(--color-gray);
	color: var(--color-cream);
	border: 0;
	padding: 1.15rem 1.5rem;
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.page-search__input::placeholder { color: rgba(0, 0, 0, 0.3); }

/* .page-search__submit picks up its full button styling from the global
   .btn / .page-search__submit rule in style.css. Only layout tweaks here. */
.page-search__submit {
	min-height: 56px;
	padding-left: 2.6rem;
	padding-right: 2.6rem;
	flex: 0 0 auto;
}

@media (max-width: 640px) {
	.page-search__body { flex-direction: column; }
}


/* ----------------------------------------------------------------------------
   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;
}

/* 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);
}


/* ----------------------------------------------------------------------------
   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-1 .col-title { color: var(--color-primary); }
.comparison-table .col-2 .col-title { color: var(--color-secondary); }
.comparison-table .col-3 .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(2rem, 4vw, 4rem);
	align-items: center;
}

.newsletter-form {
	display: flex;
	gap: 0;
}

.newsletter-form input[type=email] {
	background: transparent;
	color: var(--color-cream);
	padding: 1.15rem 1.25rem;
	border: 1px solid currentColor;
	flex: 1;
}

.newsletter-form input[type=email]::placeholder { color: rgba(248, 247, 241, 0.55); }

.newsletter-form button {
	padding: 1.15rem 2rem;
}

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


/* ----------------------------------------------------------------------------
   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. */
.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
	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);
}

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

.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;
}

/* ---- 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;
	}
}