@font-face {
	font-family: "Manrope Variable";
	font-style: normal;
	font-display: swap;
	font-weight: 200 800;
	src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
	--sv-orange: #fb6a1f;
	--sv-orange-soft: #fff0e7;
	--sv-red: #e70927;
	--sv-ink: #171717;
	--sv-ink-soft: #333331;
	--sv-muted: #6b6b68;
	--sv-paper: #fbfaf7;
	--sv-surface: #f2f2ee;
	--sv-white: #ffffff;
	--sv-line: #deded8;
	--sv-success: #196c3d;
	--sv-shadow: 0 22px 65px rgba(23, 23, 23, 0.11);
	--sv-shadow-soft: 0 12px 38px rgba(23, 23, 23, 0.08);
	--sv-radius-sm: 12px;
	--sv-radius: 20px;
	--sv-radius-lg: 28px;
	--sv-container: 1280px;
	--sv-header-height: 78px;
	--sv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--sv-paper);
	color: var(--sv-ink);
	font-family: "Manrope Variable", Manrope, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

button,
select {
	cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

h1 {
	font-size: clamp(2.7rem, 5.3vw, 4rem);
}

h2 {
	font-size: clamp(2rem, 3.6vw, 2.9rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p:last-child {
	margin-bottom: 0;
}

::selection {
	background: var(--sv-orange);
	color: var(--sv-ink);
}

:focus-visible {
	outline: 3px solid var(--sv-orange);
	outline-offset: 3px;
}

.screen-reader-text,
.sv-honeypot {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}

.sv-container {
	margin-inline: auto;
	max-width: var(--sv-container);
	padding-inline: 28px;
	width: 100%;
}

.sv-site-main {
	min-height: 60vh;
}

.sv-section {
	padding-block: clamp(72px, 9vw, 126px);
}

.sv-eyebrow {
	align-items: center;
	color: var(--sv-muted);
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 750;
	gap: 9px;
	letter-spacing: 0.11em;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.sv-eyebrow::before {
	background: var(--sv-orange);
	border-radius: 999px;
	content: "";
	height: 8px;
	width: 8px;
}

.sv-section-heading {
	margin-bottom: clamp(38px, 5vw, 64px);
}

.sv-section-heading h2 {
	margin-bottom: 0;
	max-width: 760px;
}

.sv-section-heading--split {
	align-items: end;
	display: grid;
	gap: 52px;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
}

.sv-section-heading--split > p,
.sv-section-heading__aside p {
	color: var(--sv-muted);
	font-size: 0.96rem;
	margin: 0;
}

.sv-section-heading__aside {
	display: grid;
	gap: 20px;
}

.sv-section-heading--row {
	align-items: end;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.sv-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 750;
	gap: 10px;
	justify-content: center;
	line-height: 1;
	min-height: 48px;
	padding: 0 21px;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 280ms var(--sv-ease);
}

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

.sv-button--dark {
	background: var(--sv-ink);
	color: var(--sv-white);
}

.sv-button--dark:hover {
	background: var(--sv-orange);
	color: var(--sv-ink);
}

.sv-button--orange {
	background: var(--sv-orange);
	color: var(--sv-ink);
}

.sv-button--orange:hover {
	background: var(--sv-red);
	color: var(--sv-white);
}

.sv-button--outline {
	background: transparent;
	border-color: var(--sv-ink);
	color: var(--sv-ink);
}

.sv-button--outline:hover {
	background: var(--sv-ink);
	color: var(--sv-white);
}

.sv-button--light {
	background: var(--sv-white);
	color: var(--sv-ink);
}

.sv-button--ghost-light {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.62);
	color: var(--sv-white);
}

.sv-button--whatsapp {
	background: var(--sv-success);
	color: var(--sv-white);
	width: 100%;
}

.sv-button--whatsapp:hover {
	background: #10552f;
	color: var(--sv-white);
}

.sv-text-link {
	align-items: center;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 750;
	gap: 9px;
}

.sv-text-link i {
	transition: transform 240ms var(--sv-ease);
}

.sv-text-link:hover i {
	transform: translateX(4px);
}

.sv-skip-link {
	background: var(--sv-white);
	border-radius: 8px;
	left: 16px;
	padding: 10px 16px;
	position: fixed;
	top: -100px;
	z-index: 10000;
}

.sv-skip-link:focus {
	top: 12px;
}

/* Header */
.sv-site-header {
	left: 0;
	padding: 14px 18px 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.admin-bar .sv-site-header {
	top: 32px;
}

.sv-header-shell {
	align-items: center;
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.93);
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 18px;
	display: grid;
	gap: 28px;
	grid-template-columns: 134px 1fr auto;
	margin-inline: auto;
	max-width: 1360px;
	min-height: var(--sv-header-height);
	padding: 8px 12px 8px 16px;
	transition: box-shadow 280ms ease, transform 280ms var(--sv-ease), background-color 280ms ease;
}

.sv-site-header.is-scrolled .sv-header-shell {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--sv-shadow-soft);
	transform: translateY(-4px);
}

.sv-brand {
	align-items: center;
	display: inline-flex;
}

.sv-brand img {
	height: 54px;
	object-fit: contain;
	width: 101px;
}

.sv-primary-nav {
	align-items: center;
	display: flex;
	gap: clamp(16px, 2vw, 32px);
	justify-content: center;
}

.sv-primary-nav a {
	font-size: 0.78rem;
	font-weight: 650;
	position: relative;
}

.sv-primary-nav a::after {
	background: var(--sv-orange);
	bottom: -8px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) scaleX(0);
	transition: transform 220ms var(--sv-ease);
	width: 100%;
}

.sv-primary-nav a:hover::after,
.sv-primary-nav a:focus-visible::after {
	transform: translateX(-50%) scaleX(1);
}

.sv-header-cta {
	align-items: center;
	background: var(--sv-ink);
	border-radius: 999px;
	color: var(--sv-white);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 750;
	gap: 9px;
	justify-content: center;
	min-height: 48px;
	padding: 0 19px;
}

.sv-header-cta:hover {
	background: var(--sv-orange);
	color: var(--sv-ink);
}

.sv-nav-toggle {
	align-items: center;
	background: var(--sv-ink);
	border: 0;
	border-radius: 50%;
	color: var(--sv-white);
	display: none;
	height: 46px;
	justify-content: center;
	width: 46px;
}

/* Hero */
.sv-hero {
	border-radius: var(--sv-radius-lg);
	height: max(820px, 96vh);
	margin: 12px;
	min-height: 760px;
	overflow: hidden;
	position: relative;
}

.sv-hero__media,
.sv-hero__shade {
	inset: 0;
	position: absolute;
}

.sv-hero__media {
	background-position: center;
	background-size: cover;
	transform: scale(1.05);
}

.sv-hero__shade {
	background: rgba(6, 10, 8, 0.47);
}

.sv-hero__content {
	color: var(--sv-white);
	padding-top: clamp(165px, 19vh, 220px);
	position: relative;
	z-index: 2;
}

.sv-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.sv-hero__chips span {
	background: rgba(255, 255, 255, 0.93);
	border-radius: 999px;
	color: var(--sv-ink);
	font-size: 0.68rem;
	font-weight: 750;
	padding: 6px 11px;
}

.sv-hero h1 {
	font-size: clamp(3rem, 5.4vw, 4.25rem);
	font-weight: 420;
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin-bottom: 30px;
	max-width: 830px;
}

.sv-hero__summary {
	align-items: end;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	margin-left: auto;
	max-width: 720px;
}

.sv-hero__summary p {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.94rem;
	max-width: 480px;
}

.sv-hero__summary a {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 750;
	gap: 9px;
	padding-bottom: 6px;
	white-space: nowrap;
}

.sv-hero__search {
	bottom: 28px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 3;
}

/* Search */
.sv-search {
	background: var(--sv-white);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
	color: var(--sv-ink);
	padding: 22px;
}

.sv-search__heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

.sv-search__heading .sv-eyebrow {
	margin: 0 0 2px;
}

.sv-search__heading strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
}

.sv-purpose-toggle {
	background: var(--sv-surface);
	border-radius: 999px;
	display: flex;
	padding: 4px;
}

.sv-purpose-toggle button {
	background: transparent;
	border: 0;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 750;
	min-height: 40px;
	padding: 0 16px;
}

.sv-purpose-toggle button.is-active {
	background: var(--sv-orange);
	color: var(--sv-ink);
}

.sv-search__fields {
	align-items: end;
	display: grid;
	gap: 10px;
	grid-template-columns: 1.05fr 1.05fr 0.9fr 0.9fr 0.75fr auto;
}

.sv-search label,
.sv-inquiry-form label {
	display: grid;
	gap: 7px;
}

.sv-search label > span,
.sv-inquiry-form label > span {
	color: var(--sv-muted);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.sv-search input,
.sv-search select,
.sv-inquiry-form input,
.sv-inquiry-form select,
.sv-inquiry-form textarea {
	background: var(--sv-surface);
	border: 1px solid transparent;
	border-radius: 11px;
	color: var(--sv-ink);
	min-height: 48px;
	padding: 0 13px;
	width: 100%;
}

.sv-search input:focus,
.sv-search select:focus,
.sv-inquiry-form input:focus,
.sv-inquiry-form textarea:focus {
	background: var(--sv-white);
	border-color: var(--sv-orange);
	outline: 0;
}

.sv-inquiry-form textarea {
	min-height: 110px;
	padding-block: 12px;
	resize: vertical;
}

.sv-search__submit {
	min-width: 164px;
}

/* Editorial story */
.sv-story {
	background: var(--sv-paper);
}

.sv-story-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.7fr) minmax(230px, 0.78fr);
}

.sv-story-image,
.sv-story-secondary {
	border-radius: var(--sv-radius);
	overflow: hidden;
	position: relative;
}

.sv-story-image img {
	height: 490px;
	object-fit: cover;
	transition: transform 850ms var(--sv-ease);
	width: 100%;
}

.sv-story-image:hover img,
.sv-story-secondary:hover img {
	transform: scale(1.035);
}

.sv-story-image__label {
	background: var(--sv-white);
	border-radius: 999px;
	bottom: 16px;
	font-size: 0.7rem;
	font-weight: 750;
	left: 16px;
	padding: 8px 13px;
	position: absolute;
}

.sv-story-note {
	align-items: start;
	background: var(--sv-surface);
	border-radius: var(--sv-radius);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px 28px;
}

.sv-story-note__icon {
	align-items: center;
	background: var(--sv-orange);
	border-radius: 50%;
	display: inline-flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 28px;
	width: 46px;
}

.sv-story-note h3 {
	font-size: 1.65rem;
	margin-bottom: 16px;
}

.sv-story-note p {
	color: var(--sv-muted);
	font-size: 0.85rem;
	margin-bottom: 28px;
}

.sv-story-secondary {
	background: var(--sv-white);
	box-shadow: var(--sv-shadow-soft);
	padding-bottom: 22px;
}

.sv-story-secondary img {
	height: 320px;
	margin-bottom: 20px;
	object-fit: cover;
	transition: transform 850ms var(--sv-ease);
	width: 100%;
}

.sv-story-secondary:not(:has(img))::before {
	align-items: center;
	background:
		radial-gradient(circle at 82% 18%, rgba(231, 9, 39, 0.22), transparent 36%),
		linear-gradient(145deg, #fff3e9 0%, #f7e3d8 48%, #fbfaf7 100%);
	color: var(--sv-red);
	content: "Property photography coming soon";
	display: flex;
	font-size: 0.72rem;
	font-weight: 750;
	height: 320px;
	justify-content: center;
	margin-bottom: 20px;
	padding: 28px;
	text-align: center;
}

.sv-story-secondary span,
.sv-story-secondary strong {
	display: block;
	padding-inline: 20px;
}

.sv-story-secondary span {
	color: var(--sv-muted);
	font-size: 0.72rem;
	margin-bottom: 5px;
}

.sv-story-secondary strong {
	font-size: 1rem;
}

.sv-stats {
	border-bottom: 1px solid var(--sv-line);
	border-top: 1px solid var(--sv-line);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: clamp(58px, 7vw, 88px);
	padding-block: 34px;
}

.sv-stats > div {
	border-right: 1px solid var(--sv-line);
	display: grid;
	gap: 4px;
	padding: 0 34px;
}

.sv-stats > div:first-child {
	padding-left: 0;
}

.sv-stats > div:last-child {
	border-right: 0;
}

.sv-stats strong {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 1;
}

.sv-stats span {
	color: var(--sv-muted);
	font-size: 0.7rem;
}

/* Map */
.sv-map-story {
	background: var(--sv-surface);
}

.sv-map-story__grid {
	align-items: center;
	display: grid;
	gap: clamp(48px, 7vw, 96px);
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.sv-map {
	background: #e7e8e3;
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow-soft);
	height: 520px;
	overflow: hidden;
	z-index: 1;
}

.sv-map-story__content h2 {
	margin-bottom: 22px;
}

.sv-map-story__content p {
	color: var(--sv-muted);
	margin-bottom: 30px;
}

.sv-map-popup {
	display: grid;
	gap: 8px;
	min-width: 200px;
}

.sv-map-popup img {
	border-radius: 8px;
	height: 98px;
	object-fit: cover;
	width: 100%;
}

.sv-map-popup strong,
.sv-map-popup span,
.sv-map-popup a {
	display: block;
}

.sv-map-popup span {
	color: var(--sv-muted);
	font-size: 0.75rem;
}

.sv-map-popup a {
	color: var(--sv-red);
	font-size: 0.72rem;
	font-weight: 750;
}

/* Property cards */
.sv-property-grid {
	display: grid;
	gap: 40px 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-property-card {
	min-width: 0;
}

.sv-property-card__image {
	background: var(--sv-surface);
	border-radius: var(--sv-radius);
	display: block;
	overflow: hidden;
	position: relative;
}

.sv-property-card__image::after {
	background: rgba(23, 23, 23, 0.08);
	content: "";
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 320ms ease;
}

.sv-property-card__image img {
	aspect-ratio: 1.33;
	object-fit: cover;
	transition: transform 750ms var(--sv-ease);
	width: 100%;
}

.sv-property-card__placeholder {
	align-items: center;
	aspect-ratio: 1.33;
	background:
		radial-gradient(circle at 82% 18%, rgba(231, 9, 39, 0.22), transparent 36%),
		linear-gradient(145deg, #fff3e9 0%, #f7e3d8 48%, #fbfaf7 100%);
	color: var(--sv-red);
	display: flex;
	flex-direction: column;
	font-size: 0.78rem;
	font-weight: 750;
	gap: 12px;
	justify-content: center;
	letter-spacing: 0.02em;
	padding: 24px;
	text-align: center;
}

.sv-property-card__placeholder i {
	font-size: 2rem;
}

.sv-property-card:hover .sv-property-card__image img {
	transform: scale(1.045);
}

.sv-property-card:hover .sv-property-card__image::after {
	opacity: 1;
}

.sv-property-card__badges {
	display: flex;
	gap: 6px;
	left: 12px;
	position: absolute;
	top: 12px;
	z-index: 2;
}

.sv-property-card__badges span,
.sv-property-hero__badges span {
	background: var(--sv-white);
	border-radius: 999px;
	font-size: 0.64rem;
	font-weight: 750;
	padding: 7px 11px;
}

.sv-property-card__badges .sv-badge--demo,
.sv-property-hero__badges .sv-badge--demo {
	background: var(--sv-orange-soft);
	color: #8b2f00;
}

.sv-property-card__arrow {
	align-items: center;
	background: var(--sv-white);
	border-radius: 50%;
	bottom: 12px;
	display: flex;
	height: 40px;
	justify-content: center;
	opacity: 0;
	position: absolute;
	right: 12px;
	transform: translateY(10px);
	transition: opacity 280ms ease, transform 280ms var(--sv-ease);
	width: 40px;
	z-index: 2;
}

.sv-property-card:hover .sv-property-card__arrow {
	opacity: 1;
	transform: translateY(0);
}

.sv-property-card__body {
	padding: 17px 5px 0;
}

.sv-property-card__meta {
	color: var(--sv-muted);
	display: flex;
	font-size: 0.65rem;
	gap: 8px;
	justify-content: space-between;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.sv-property-card h3 {
	font-size: 1.15rem;
	margin-bottom: 7px;
}

.sv-property-card h3 a:hover {
	color: var(--sv-red);
}

.sv-property-card__location {
	color: var(--sv-muted);
	font-size: 0.72rem;
	margin-bottom: 12px;
}

.sv-property-card__location i {
	color: var(--sv-orange);
	margin-right: 4px;
}

.sv-property-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 15px;
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.sv-property-card__facts li {
	color: var(--sv-muted);
	font-size: 0.68rem;
}

.sv-property-card__facts i {
	color: var(--sv-ink);
	margin-right: 4px;
}

.sv-property-card__price {
	font-size: 0.9rem;
	font-weight: 780;
}

/* FAQ */
.sv-faq {
	background: var(--sv-white);
}

.sv-faq-list {
	border-top: 1px solid var(--sv-line);
}

.sv-faq-list details {
	border-bottom: 1px solid var(--sv-line);
}

.sv-faq-list summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 620;
	gap: 24px;
	justify-content: space-between;
	list-style: none;
	padding: 20px 4px;
}

.sv-faq-list summary::-webkit-details-marker {
	display: none;
}

.sv-faq-list summary span {
	align-items: center;
	border: 1px solid var(--sv-line);
	border-radius: 50%;
	display: flex;
	flex: 0 0 auto;
	height: 34px;
	justify-content: center;
	transition: background-color 220ms ease, color 220ms ease, transform 320ms var(--sv-ease);
	width: 34px;
}

.sv-faq-list details[open] summary span {
	background: var(--sv-orange);
	border-color: var(--sv-orange);
	transform: rotate(45deg);
}

.sv-faq-list details > div {
	color: var(--sv-muted);
	max-width: 850px;
	padding: 0 4px 22px;
}

/* Guidance and CTA */
.sv-guidance__grid {
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
	max-width: 1000px;
}

.sv-guidance__image {
	border-radius: var(--sv-radius) 0 0 var(--sv-radius);
	overflow: hidden;
}

.sv-guidance__image img {
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	width: 100%;
}

.sv-guidance__content {
	background: var(--sv-surface);
	border-radius: 0 var(--sv-radius) var(--sv-radius) 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(38px, 6vw, 72px);
}

.sv-guidance__quote {
	color: var(--sv-orange);
	font-size: 2.2rem;
	margin-bottom: 28px;
}

.sv-guidance__content h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	max-width: 650px;
}

.sv-guidance__content p {
	color: var(--sv-muted);
	max-width: 640px;
}

.sv-cta {
	background-attachment: scroll;
	background-position: center;
	background-size: cover;
	color: var(--sv-white);
	margin: 0 12px 12px;
	min-height: 520px;
	position: relative;
}

.sv-cta__shade {
	background: rgba(7, 13, 18, 0.58);
	inset: 0;
	position: absolute;
}

.sv-cta__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 520px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.sv-cta .sv-eyebrow {
	color: rgba(255, 255, 255, 0.75);
}

.sv-cta h2 {
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	margin-bottom: 16px;
}

.sv-cta p {
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 26px;
}

.sv-cta__content > div {
	display: flex;
	gap: 10px;
}

/* Page heroes */
.sv-page-hero {
	background: var(--sv-orange-soft);
	padding: 180px 0 92px;
}

.sv-page-hero--catalogue {
	background: var(--sv-surface);
}

.sv-page-hero--contact {
	background: var(--sv-orange-soft);
}

.sv-page-hero--about {
	background:
		radial-gradient(circle at 82% 24%, rgba(231, 9, 39, 0.1), transparent 27%),
		linear-gradient(135deg, var(--sv-orange-soft), var(--sv-paper));
}

.sv-page-hero .sv-container {
	max-width: 1040px;
}

.sv-page-hero h1 {
	font-size: clamp(2.65rem, 5vw, 4.1rem);
	margin-bottom: 22px;
	max-width: 900px;
}

.sv-page-hero p {
	color: var(--sv-muted);
	font-size: 1.02rem;
	max-width: 650px;
}

.sv-page-hero--error {
	min-height: 72vh;
}

/* Catalogue */
.sv-catalogue {
	padding: 0 0 110px;
}

.sv-catalogue-search {
	margin-top: -42px;
	position: relative;
	z-index: 2;
}

.sv-search--catalogue {
	border: 1px solid var(--sv-line);
	box-shadow: var(--sv-shadow-soft);
}

.sv-catalogue-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-block: 38px 28px;
}

.sv-catalogue-toolbar p {
	color: var(--sv-muted);
	font-size: 0.82rem;
	margin: 0;
}

.sv-catalogue-toolbar p strong {
	color: var(--sv-ink);
}

.sv-catalogue-toolbar__actions,
.sv-view-toggle {
	align-items: center;
	display: flex;
	gap: 10px;
}

.sv-catalogue-toolbar select {
	background: var(--sv-white);
	border: 1px solid var(--sv-line);
	border-radius: 999px;
	min-height: 42px;
	padding: 0 38px 0 14px;
}

.sv-view-toggle {
	background: var(--sv-surface);
	border-radius: 999px;
	padding: 4px;
}

.sv-view-toggle button {
	background: transparent;
	border: 0;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	min-height: 40px;
	padding: 0 12px;
}

.sv-view-toggle button.is-active {
	background: var(--sv-ink);
	color: var(--sv-white);
}

.sv-catalogue-results {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 0;
	transition: grid-template-columns 480ms var(--sv-ease);
}

.sv-catalogue-list {
	min-width: 0;
}

.sv-map--catalogue {
	height: calc(100vh - 120px);
	margin-left: 0;
	opacity: 0;
	position: sticky !important;
	top: 105px;
	transition: margin-left 480ms var(--sv-ease), opacity 300ms ease;
	visibility: hidden;
}

.sv-catalogue-results.is-map {
	gap: 24px;
	grid-template-columns: minmax(480px, 0.95fr) minmax(420px, 1.05fr);
}

.sv-catalogue-results.is-map .sv-property-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-catalogue-results.is-map .sv-map--catalogue {
	margin-left: 0;
	opacity: 1;
	visibility: visible;
}

.sv-pagination {
	display: flex;
	gap: 7px;
	justify-content: center;
	margin-top: 58px;
}

.sv-pagination .page-numbers {
	align-items: center;
	border: 1px solid var(--sv-line);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.75rem;
	justify-content: center;
	min-height: 42px;
	min-width: 42px;
	padding-inline: 13px;
}

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

.sv-empty-state {
	align-items: center;
	background: var(--sv-surface);
	border-radius: var(--sv-radius);
	display: flex;
	flex-direction: column;
	min-height: 430px;
	justify-content: center;
	padding: 50px;
	text-align: center;
}

.sv-empty-state > span {
	color: var(--sv-orange);
	font-size: 2.4rem;
}

.sv-empty-state h2 {
	margin: 18px 0 10px;
}

.sv-empty-state p {
	color: var(--sv-muted);
	max-width: 520px;
}

/* Single property */
.sv-property-hero {
	background: var(--sv-surface);
	padding: 156px 0 50px;
}

.sv-breadcrumbs {
	color: var(--sv-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.7rem;
	gap: 9px;
	margin-bottom: 34px;
}

.sv-breadcrumbs a:hover {
	color: var(--sv-red);
}

.sv-property-hero__heading {
	align-items: end;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.sv-property-hero__heading h1 {
	font-size: clamp(2.6rem, 4.8vw, 4.1rem);
	margin: 18px 0 14px;
	max-width: 850px;
}

.sv-property-hero__heading p {
	color: var(--sv-muted);
}

.sv-property-hero__badges {
	display: flex;
	gap: 8px;
}

.sv-property-hero__badges .sv-badge--status {
	background: var(--sv-red);
	color: var(--sv-white);
}

.sv-property-hero__heading > div:last-child {
	display: grid;
	gap: 4px;
	text-align: right;
}

.sv-property-hero__heading > div:last-child span {
	color: var(--sv-muted);
	font-size: 0.7rem;
}

.sv-property-hero__heading > div:last-child strong {
	font-size: clamp(1.35rem, 3vw, 2.1rem);
	white-space: nowrap;
}

.sv-property-gallery {
	display: grid;
	gap: 12px;
	grid-auto-rows: 260px;
	grid-template-columns: 1.55fr 0.75fr;
	padding-top: 18px;
}

.sv-gallery-item {
	background: var(--sv-surface);
	border: 0;
	border-radius: var(--sv-radius);
	overflow: hidden;
	padding: 0;
}

.sv-gallery-item--main {
	grid-row: span 2;
}

.sv-gallery-item img {
	height: 100%;
	object-fit: cover;
	transition: transform 750ms var(--sv-ease);
	width: 100%;
}

.sv-gallery-item:hover img {
	transform: scale(1.035);
}

.sv-property-detail__grid {
	align-items: start;
	display: grid;
	gap: clamp(48px, 7vw, 92px);
	grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
}

.sv-property-keyfacts {
	border-bottom: 1px solid var(--sv-line);
	border-top: 1px solid var(--sv-line);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 0 0 64px;
	padding: 25px 0;
}

.sv-property-keyfacts li {
	align-items: center;
	border-right: 1px solid var(--sv-line);
	display: flex;
	font-weight: 700;
	gap: 11px;
	justify-content: center;
}

.sv-property-keyfacts li:last-child {
	border-right: 0;
}

.sv-property-keyfacts i {
	color: var(--sv-orange);
}

.sv-property-copy,
.sv-property-features,
.sv-property-location,
.sv-property-tour {
	margin-bottom: 66px;
}

.sv-property-copy h2,
.sv-property-features h2,
.sv-property-location h2 {
	font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.sv-property-copy p {
	color: var(--sv-muted);
}

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

.sv-property-features li {
	align-items: center;
	display: flex;
	font-size: 0.9rem;
	gap: 9px;
}

.sv-property-features i {
	color: var(--sv-orange);
}

.sv-property-tour__header {
	align-items: end;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: 24px;
}

.sv-property-tour__header h2 {
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	margin-bottom: 14px;
}

.sv-property-tour__header p {
	color: var(--sv-muted);
	font-size: 0.88rem;
	line-height: 1.75;
	margin: 0;
	max-width: 620px;
}

.sv-property-tour__external {
	white-space: nowrap;
}

.sv-property-tour__frame {
	aspect-ratio: 16 / 10;
	background: #171717;
	border: 1px solid var(--sv-line);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow-soft);
	overflow: hidden;
	position: relative;
}

.sv-property-tour__frame::before {
	background: linear-gradient(135deg, var(--sv-orange), var(--sv-red));
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.sv-property-tour__frame iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}
.sv-property-location > div:first-child {
	margin-bottom: 24px;
}

.sv-map--single {
	height: 420px;
}

.sv-property-enquiry {
	background: var(--sv-white);
	border: 1px solid var(--sv-line);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow-soft);
	padding: 30px;
	position: sticky;
	top: 108px;
}

.sv-property-enquiry h2 {
	font-size: 2rem;
	margin-bottom: 14px;
}

.sv-property-enquiry > p {
	color: var(--sv-muted);
	font-size: 0.84rem;
	margin-bottom: 24px;
}

.sv-property-enquiry .sv-button--whatsapp {
	margin-bottom: 14px;
}

.sv-inquiry-form {
	display: grid;
	gap: 14px;
}

.sv-form-grid {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-consent {
	align-items: start;
	display: grid !important;
	gap: 9px !important;
	grid-template-columns: 18px 1fr;
}

.sv-consent input {
	accent-color: var(--sv-orange);
	height: 17px;
	margin-top: 2px;
	min-height: 0;
	width: 17px;
}

.sv-consent span {
	line-height: 1.45;
}

.sv-inquiry-form .sv-button {
	width: 100%;
}

.sv-notice {
	border-radius: 10px;
	font-size: 0.82rem;
	margin-bottom: 16px;
	padding: 12px 14px;
}

.sv-notice--success {
	background: #e8f6ee;
	color: var(--sv-success);
}

.sv-notice--error {
	background: #fff0f2;
	color: #981326;
}

.sv-related {
	background: var(--sv-surface);
}

/* About */
.sv-about-overview__grid {
	align-items: start;
	display: grid;
	gap: clamp(48px, 7vw, 92px);
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.sv-about-overview__media {
	background: var(--sv-surface);
	border-radius: var(--sv-radius-lg);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.sv-about-overview__media img {
	aspect-ratio: 4 / 4.7;
	height: 100%;
	object-fit: cover;
	transition: transform 800ms var(--sv-ease);
	width: 100%;
}

.sv-about-overview__media:hover img {
	transform: scale(1.025);
}

.sv-about-overview__media figcaption {
	background: rgba(23, 23, 23, 0.92);
	border-radius: 14px;
	bottom: 22px;
	color: var(--sv-white);
	display: grid;
	left: 22px;
	padding: 16px 18px;
	position: absolute;
}

.sv-about-overview__media figcaption strong {
	font-size: 1.35rem;
	font-weight: 650;
}

.sv-about-overview__media figcaption span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.72rem;
}

.sv-about-editor-content {
	padding-top: 16px;
}

.sv-about-editor-content h2 {
	font-size: clamp(2rem, 3.5vw, 2.85rem);
	margin: 52px 0 18px;
}

.sv-about-editor-content h2:first-child {
	margin-top: 0;
}

.sv-about-editor-content p {
	color: var(--sv-muted);
	font-size: 1.02rem;
	max-width: 670px;
}

.sv-about-services {
	background: var(--sv-surface);
}

.sv-about-service-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sv-about-service-grid article {
	background: var(--sv-white);
	border: 1px solid rgba(222, 222, 216, 0.78);
	border-radius: var(--sv-radius);
	min-height: 265px;
	padding: 28px;
	transition: box-shadow 260ms ease, transform 320ms var(--sv-ease);
}

.sv-about-service-grid article:hover {
	box-shadow: var(--sv-shadow-soft);
	transform: translateY(-5px);
}

.sv-about-service-grid span {
	align-items: center;
	background: var(--sv-orange-soft);
	border-radius: 50%;
	color: var(--sv-red);
	display: inline-flex;
	font-size: 1.1rem;
	height: 48px;
	justify-content: center;
	margin-bottom: 42px;
	width: 48px;
}

.sv-about-service-grid h3 {
	margin-bottom: 12px;
}

.sv-about-service-grid p {
	color: var(--sv-muted);
	font-size: 0.86rem;
}

.sv-about-foundation__grid {
	align-items: center;
	display: grid;
	gap: clamp(46px, 8vw, 110px);
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
}

.sv-about-foundation__copy p {
	color: var(--sv-muted);
	max-width: 630px;
}

.sv-about-foundation__facts {
	display: grid;
	gap: 12px;
}

.sv-about-foundation__facts article {
	align-items: center;
	background: var(--sv-white);
	border: 1px solid var(--sv-line);
	border-radius: var(--sv-radius-sm);
	display: grid;
	gap: 4px;
	grid-template-columns: 64px 1fr;
	padding: 20px;
}

.sv-about-foundation__facts i {
	color: var(--sv-orange);
	font-size: 1.35rem;
	grid-row: span 2;
	text-align: center;
}

.sv-about-foundation__facts span {
	color: var(--sv-muted);
	font-size: 0.7rem;
	text-transform: uppercase;
}

.sv-about-foundation__facts strong {
	font-size: 1rem;
}

/* Contact */
.sv-contact-page__grid {
	align-items: start;
	display: grid;
	gap: clamp(50px, 8vw, 110px);
	grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.sv-contact-details h2,
.sv-contact-form-card h2 {
	margin-bottom: 18px;
}

.sv-contact-details > p {
	color: var(--sv-muted);
}

.sv-contact-details ul {
	display: grid;
	gap: 18px;
	list-style: none;
	margin: 32px 0;
	padding: 0;
}

.sv-contact-details li {
	align-items: flex-start;
	display: flex;
	gap: 14px;
}

.sv-contact-details li > i {
	align-items: center;
	background: var(--sv-orange-soft);
	border-radius: 50%;
	color: var(--sv-red);
	display: flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.sv-contact-details li div {
	display: grid;
}

.sv-contact-details li span {
	color: var(--sv-muted);
	font-size: 0.7rem;
}

.sv-contact-form-card {
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow-soft);
	padding: clamp(30px, 5vw, 56px);
}

/* Footer */
.sv-site-footer {
	background: var(--sv-white);
	padding-top: clamp(62px, 8vw, 100px);
}

.sv-footer-intro {
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
	padding-bottom: 60px;
}

.sv-footer-intro h2 {
	font-size: clamp(2.3rem, 4.5vw, 4rem);
	margin: 0;
	max-width: 760px;
}

.sv-footer-contact {
	display: flex;
	flex-direction: column;
	font-size: 0.84rem;
	gap: 6px;
}

.sv-footer-contact p {
	color: var(--sv-muted);
}

.sv-footer-contact a {
	font-weight: 720;
}

.sv-footer-nav {
	align-items: center;
	border-top: 1px solid var(--sv-line);
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr auto 1fr;
	padding-block: 22px;
}

.sv-footer-links,
.sv-footer-social {
	display: flex;
	gap: 22px;
}

.sv-footer-links a {
	font-size: 0.72rem;
	font-weight: 650;
}

.sv-footer-nav img {
	height: 48px;
	object-fit: contain;
	width: 90px;
}

.sv-footer-social {
	justify-content: flex-end;
}

.sv-footer-social a {
	align-items: center;
	border: 1px solid var(--sv-line);
	border-radius: 50%;
	display: flex;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.sv-footer-bottom {
	border-top: 1px solid var(--sv-line);
	color: var(--sv-muted);
	display: flex;
	font-size: 0.64rem;
	justify-content: space-between;
	padding-block: 18px 26px;
}

.sv-footer-bottom p {
	margin: 0;
}

/* Floating WhatsApp */
.sv-whatsapp-float {
	align-items: center;
	animation: sv-whatsapp-arrive 620ms var(--sv-ease) 500ms both;
	background: var(--sv-success);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	bottom: max(22px, env(safe-area-inset-bottom));
	box-shadow: 0 16px 40px rgba(25, 108, 61, 0.32);
	color: var(--sv-white);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 750;
	gap: 10px;
	justify-content: center;
	min-height: 56px;
	padding: 0 21px;
	position: fixed;
	right: max(22px, env(safe-area-inset-right));
	transition: background-color 180ms ease, bottom 320ms var(--sv-ease), box-shadow 260ms ease, transform 260ms var(--sv-ease);
	z-index: 950;
}

.sv-whatsapp-float i {
	font-size: 1.3rem;
}

.sv-whatsapp-float:hover {
	background: #10552f;
	box-shadow: 0 20px 48px rgba(25, 108, 61, 0.4);
	transform: translateY(-3px);
}

.sv-whatsapp-float.is-over-footer {
	bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
}

@keyframes sv-whatsapp-arrive {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Lightbox */
.sv-lightbox {
	background: transparent;
	border: 0;
	max-height: 92vh;
	max-width: min(94vw, 1500px);
	overflow: visible;
	padding: 0;
}

.sv-lightbox::backdrop {
	background: rgba(7, 7, 7, 0.88);
}

.sv-lightbox img {
	border-radius: var(--sv-radius-sm);
	max-height: 88vh;
	object-fit: contain;
	width: auto;
}

.sv-lightbox__close {
	align-items: center;
	background: var(--sv-white);
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 42px;
	justify-content: center;
	position: absolute;
	right: -12px;
	top: -12px;
	width: 42px;
	z-index: 2;
}

.sv-prose {
	max-width: 780px;
}

/* Responsive */
@media (max-width: 1160px) {
	.sv-search__fields {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sv-search__submit {
		width: 100%;
	}

	.sv-story-grid {
		grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.75fr);
	}

	.sv-story-secondary {
		display: none;
	}

	.sv-catalogue-results.is-map {
		grid-template-columns: minmax(420px, 0.9fr) minmax(380px, 1.1fr);
	}

	.sv-catalogue-results.is-map .sv-property-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	:root {
		--sv-header-height: 68px;
	}

	.sv-site-header {
		padding-inline: 12px;
	}

	.sv-header-shell {
		grid-template-columns: 1fr auto;
		min-height: 68px;
	}

	.sv-header-cta {
		display: none;
	}

	.sv-nav-toggle {
		display: flex;
	}

	.sv-primary-nav {
		align-items: stretch;
		background: var(--sv-white);
		border-radius: 16px;
		box-shadow: var(--sv-shadow);
		display: flex;
		flex-direction: column;
		gap: 0;
		left: 0;
		opacity: 0;
		padding: 12px;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: calc(100% + 10px);
		transform: translateY(-10px);
		transition: opacity 220ms ease, transform 300ms var(--sv-ease);
	}

	.sv-primary-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.sv-primary-nav a {
		border-bottom: 1px solid var(--sv-line);
		font-size: 0.9rem;
		padding: 15px 10px;
	}

	.sv-primary-nav a:last-child {
		border-bottom: 0;
	}

	.sv-primary-nav a::after {
		display: none;
	}

	.sv-hero {
		height: auto;
		min-height: 820px;
	}

	.sv-hero__content {
		padding-top: 160px;
	}

	.sv-hero__summary {
		align-items: flex-start;
		flex-direction: column;
		margin-left: 0;
		max-width: 560px;
	}

	.sv-hero__search {
		bottom: 20px;
	}

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

	.sv-story-grid,
	.sv-map-story__grid,
	.sv-property-detail__grid,
	.sv-contact-page__grid,
	.sv-about-overview__grid,
	.sv-about-foundation__grid {
		grid-template-columns: 1fr;
	}

	.sv-about-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sv-story-image img {
		height: 420px;
	}

	.sv-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.sv-stats > div {
		border-bottom: 1px solid var(--sv-line);
		padding: 25px;
	}

	.sv-stats > div:nth-child(2) {
		border-right: 0;
	}

	.sv-stats > div:nth-last-child(-n+2) {
		border-bottom: 0;
	}

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

	.sv-catalogue-results,
	.sv-catalogue-results.is-map {
		grid-template-columns: 1fr;
	}

	.sv-catalogue-results.is-map .sv-property-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sv-map--catalogue {
		display: none;
		height: 600px;
		margin-top: 24px;
		position: relative !important;
		top: auto;
	}

	.sv-catalogue-results.is-map .sv-map--catalogue {
		display: block;
	}

	.sv-catalogue-results.is-map .sv-catalogue-list {
		display: none;
	}

	.sv-property-enquiry {
		position: static;
	}

	.sv-footer-intro {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.admin-bar .sv-site-header {
		top: 46px;
	}

	.sv-container {
		padding-inline: 18px;
	}

	.sv-section {
		padding-block: 72px;
	}

	.sv-section-heading--split,
	.sv-section-heading--row {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.sv-section-heading--split {
		display: flex;
	}

	.sv-hero {
		border-radius: 20px;
		margin: 8px;
		min-height: 890px;
	}

	.sv-hero__content {
		padding-top: 142px;
	}

	.sv-hero h1 {
		font-size: clamp(2.5rem, 11vw, 3.4rem);
	}

	.sv-page-hero h1,
	.sv-property-hero__heading h1 {
		font-size: 2.5rem;
	}

	.sv-hero__summary a {
		display: none;
	}

	.sv-search {
		border-radius: 16px;
		padding: 16px;
	}

	.sv-search__heading {
		align-items: flex-start;
		gap: 14px;
	}

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

	.sv-search__fields label:nth-child(3),
	.sv-search__fields label:nth-child(4) {
		display: none;
	}

	.sv-search__submit {
		grid-column: 1 / -1;
	}

	.sv-story-image img {
		height: 360px;
	}

	.sv-story-note {
		padding: 30px 24px;
	}

	.sv-property-grid,
	.sv-catalogue-results.is-map .sv-property-grid {
		grid-template-columns: 1fr;
	}

	.sv-map {
		height: 420px;
	}

	.sv-guidance__grid {
		grid-template-columns: 1fr;
	}

	.sv-guidance__image,
	.sv-guidance__content {
		border-radius: var(--sv-radius);
	}

	.sv-guidance__image {
		margin-bottom: -22px;
		position: relative;
		width: 72%;
		z-index: 2;
	}

	.sv-guidance__image img {
		max-height: 430px;
	}

	.sv-guidance__content {
		padding-top: 52px;
	}

	.sv-cta,
	.sv-cta__content {
		min-height: 500px;
	}

	.sv-cta {
		margin-inline: 8px;
	}

	.sv-cta__content > div {
		flex-direction: column;
		width: 100%;
	}

	.sv-page-hero {
		padding: 145px 0 72px;
	}

	.sv-catalogue-search {
		margin-top: -24px;
	}

	.sv-catalogue-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.sv-catalogue-toolbar__actions {
		justify-content: space-between;
		width: 100%;
	}

	.sv-property-hero {
		padding-top: 135px;
	}

	.sv-property-hero__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.sv-property-hero__heading > div:last-child {
		text-align: left;
	}

	.sv-property-gallery {
		grid-auto-rows: 150px;
		grid-template-columns: 1fr 0.65fr;
		padding-inline: 8px;
	}

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

	.sv-property-keyfacts li {
		border-bottom: 1px solid var(--sv-line);
		border-right: 0;
		justify-content: flex-start;
		padding: 14px 4px;
	}

	.sv-property-keyfacts li:last-child {
		border-bottom: 0;
	}

	.sv-property-features ul,
	.sv-form-grid {
		grid-template-columns: 1fr;
	}

	.sv-property-enquiry {
		padding: 24px;
	}

	.sv-contact-page__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sv-about-service-grid {
		grid-template-columns: 1fr;
	}

	.sv-about-service-grid article {
		min-height: 0;
	}

	.sv-whatsapp-float {
		bottom: max(16px, env(safe-area-inset-bottom));
		height: 56px;
		padding: 0;
		right: max(16px, env(safe-area-inset-right));
		width: 56px;
	}

	.sv-whatsapp-float span {
		display: none;
	}

	.sv-whatsapp-float.is-over-footer {
		bottom: max(84px, calc(env(safe-area-inset-bottom) + 84px));
	}

	.sv-footer-nav {
		grid-template-columns: 1fr auto;
	}

	.sv-footer-links {
		flex-wrap: wrap;
	}

	.sv-footer-nav img {
		display: none;
	}

	.sv-footer-bottom {
		flex-direction: column;
		gap: 6px;
	}
}

@media (max-width: 720px) {
	.sv-property-tour__header {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.sv-property-tour__frame {
		aspect-ratio: 4 / 5;
		min-height: 420px;
	}
}
@media (max-width: 480px) {
	.sv-site-header {
		padding: 10px 8px 0;
	}

	.sv-header-shell {
		border-radius: 15px;
	}

	.sv-hero {
		min-height: 920px;
	}

	.sv-search__fields {
		grid-template-columns: 1fr;
	}

	.sv-search__submit {
		grid-column: auto;
	}

	.sv-stats {
		grid-template-columns: 1fr;
	}

	.sv-stats > div,
	.sv-stats > div:nth-last-child(-n+2) {
		border-bottom: 1px solid var(--sv-line);
		border-right: 0;
		padding: 24px 0;
	}

	.sv-stats > div:last-child {
		border-bottom: 0;
	}

	.sv-purpose-toggle button {
		padding-inline: 13px;
	}

	.sv-catalogue-toolbar__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.sv-property-gallery {
		display: block;
	}

	.sv-gallery-item {
		display: none;
		height: 300px;
		width: 100%;
	}

	.sv-gallery-item:first-child {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.sv-hero__media {
		transform: none !important;
	}

	.sv-whatsapp-float {
		animation: none;
	}
}

/* Gutenberg-managed Spaceview sections */
.sv-block-section {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: var(--sv-container);
	padding: clamp(68px, 8vw, 112px) 28px;
}

.sv-block-section > h2,
.sv-block-section > .wp-block-heading {
	font-size: clamp(2rem, 3.6vw, 2.9rem);
	margin-bottom: 28px;
	max-width: 780px;
}

.sv-block-section .wp-block-columns {
	align-items: center;
	gap: clamp(28px, 5vw, 72px);
	margin: 0;
}

.sv-block-section .wp-block-column > :last-child { margin-bottom: 0; }
.sv-block-section .wp-block-image { margin: 0; }
.sv-block-section .wp-block-image img { border-radius: var(--sv-radius); width: 100%; }
.sv-block-section .wp-block-button__link {
	background: var(--sv-ink);
	border-radius: 999px;
	color: var(--sv-white);
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.82rem 1.2rem;
	transition: background 180ms ease, transform 180ms ease;
}
.sv-block-section .wp-block-button__link:hover { background: var(--sv-red); transform: translateY(-2px); }

.sv-block-search { margin-top: -42px; position: relative; z-index: 4; }
.sv-block-stats { padding: 0 28px clamp(68px, 8vw, 110px); }

.sv-block-faq { max-width: 1120px; }
.sv-block-faq details {
	border-bottom: 1px solid var(--sv-line);
	margin: 0;
	padding: 18px 0;
}
.sv-block-faq summary {
	color: var(--sv-ink);
	cursor: pointer;
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	font-weight: 650;
	list-style-position: outside;
	padding-right: 18px;
}
.sv-block-faq details p { color: var(--sv-muted); line-height: 1.75; margin: 14px 0 0; max-width: 850px; }

.sv-block-guidance {
	background: var(--sv-surface);
	border-radius: var(--sv-radius-lg);
	margin-bottom: clamp(72px, 8vw, 112px);
	padding-block: clamp(36px, 5vw, 70px);
}
.sv-block-guidance .wp-block-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.sv-block-guidance h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); }
.sv-block-guidance p { color: var(--sv-muted); font-size: 1rem; line-height: 1.8; }

.sv-block-about .wp-block-image img { aspect-ratio: 4 / 3; object-fit: cover; }
.sv-block-about .wp-block-column:last-child { color: var(--sv-muted); font-size: 1rem; line-height: 1.8; }
.sv-block-about .wp-block-column:last-child h2 { color: var(--sv-ink); font-size: clamp(2rem, 3.2vw, 2.7rem); }

.sv-block-services {
	background: var(--sv-surface);
	max-width: none;
	padding-inline: max(28px, calc((100vw - var(--sv-container)) / 2));
}
.sv-block-services > h2 { margin-inline: auto; max-width: var(--sv-container); }
.sv-block-services > .wp-block-columns { align-items: stretch; margin-inline: auto; max-width: var(--sv-container); }
.sv-block-services .wp-block-column { display: flex; }
.sv-block-icon-card {
	background: var(--sv-white);
	border: 1px solid var(--sv-line);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow-soft);
	box-sizing: border-box;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
	transition: transform 180ms ease, box-shadow 180ms ease;
}
.sv-block-icon-card:hover { box-shadow: var(--sv-shadow); transform: translateY(-4px); }
.sv-block-icon-card > span { align-items: center; background: var(--sv-orange-soft); border-radius: 50%; color: var(--sv-red); display: inline-flex; height: 44px; justify-content: center; margin-bottom: 26px; width: 44px; }
.sv-block-icon-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.sv-block-icon-card p { color: var(--sv-muted); font-size: 0.9rem; line-height: 1.65; }

.sv-block-foundation { text-align: center; }
.sv-block-foundation > * { margin-inline: auto; max-width: 820px; }
.sv-block-foundation > p { color: var(--sv-muted); font-size: 1.04rem; line-height: 1.8; }
.sv-block-foundation .wp-block-buttons { justify-content: center; }

.sv-block-contact { padding-block: clamp(64px, 8vw, 105px); }
.sv-block-contact > .wp-block-columns { align-items: stretch; }
.sv-block-contact .wp-block-column { display: flex; }
.sv-block-contact .sv-contact-details,
.sv-block-contact .sv-contact-form-card { box-sizing: border-box; flex: 1; }

@media (max-width: 900px) {
	.sv-block-services > .wp-block-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 781px) {
	.sv-block-section { padding-inline: 20px; }
	.sv-block-section .wp-block-columns { gap: 30px; }
	.sv-block-search { margin-top: -24px; padding-inline: 20px; }
	.sv-block-stats { padding-inline: 20px; }
	.sv-block-services { padding-inline: 20px; }
	.sv-block-services > .wp-block-columns { grid-template-columns: 1fr; }
	.sv-block-guidance { border-radius: 0; margin-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.sv-block-section .wp-block-button__link,
	.sv-block-icon-card { transition: none; }
}