/**
 * TanpaPerantara visual system.
 *
 * Loaded after the base theme so existing components keep their behavior while
 * adopting the production site's blue, gold, compact listing-first interface.
 */

/*
 * Carnas is bundled under the supplied Fontspring Webfont EULA.
 * Full license: ../fonts/carnas/LICENSE.txt
 */
@font-face {
	font-family: "Carnas";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/carnas/carnas-regular.woff") format("woff");
}

@font-face {
	font-family: "Carnas";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/carnas/carnas-extrabold.woff") format("woff");
}

:root {
	--gp-primary-dark: #084783;
	--gp-primary-soft: #e9f3ff;
	--gp-ink: #172334;
	--gp-muted: #647184;
	--gp-line: #d8e1ea;
	--gp-soft: #f1f6fb;
	--gp-gold: #e5b719;
	--gp-silver: #9aa5b2;
	--gp-success: #12a66a;
	--gp-radius: 12px;
	--gp-shadow: 0 14px 38px rgba(22, 49, 79, .12);
	--gp-card-shadow: 0 5px 18px rgba(22, 49, 79, .08);
	--gp-heading: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
}

body {
	color: var(--gp-ink);
	background: #fff;
	font-family: "Plus Jakarta Sans", Inter, var(--gp-font);
	line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-hero h1,
.property-header h1,
.article-single__header h1 {
	font-family: var(--gp-heading);
}

.container {
	width: min(100% - 32px, 1248px);
}

.section {
	padding: 52px 0;
}

.button {
	min-height: 42px;
	padding: 9px 18px;
	border-width: 1px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(13, 101, 189, .14);
}

.button--light {
	color: #8b6900;
	background: #fff;
	border-color: #fff;
}

.button--light:hover {
	color: #694f00;
	background: #fff8d9;
	border-color: #fff8d9;
}

.eyebrow {
	color: var(--gp-primary);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--gp-line);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 2px 12px rgba(25, 46, 72, .07);
	backdrop-filter: blur(14px);
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home .site-header,
.front-page .site-header {
	position: fixed;
	right: 0;
	left: 0;
	color: #fff;
	border-color: transparent;
	background: linear-gradient(180deg, rgba(0, 42, 91, .62), transparent);
	box-shadow: none;
	backdrop-filter: none;
}

.home .site-header.is-scrolled,
.front-page .site-header.is-scrolled {
	color: var(--gp-ink);
	border-color: var(--gp-line);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 2px 14px rgba(25, 46, 72, .1);
	backdrop-filter: blur(14px);
}

.header-inner {
	min-height: 78px;
	gap: 18px;
}

.site-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gp-ink);
	font-size: clamp(1.08rem, 2vw, 1.45rem);
	font-weight: 850;
	letter-spacing: -.025em;
}

.site-title__mark {
	display: grid;
	color: var(--gp-primary);
	place-items: center;
}

.home .site-header:not(.is-scrolled) .site-title,
.front-page .site-header:not(.is-scrolled) .site-title,
.home .site-header:not(.is-scrolled) .menu-toggle,
.front-page .site-header:not(.is-scrolled) .menu-toggle {
	color: #fff;
}

.custom-logo {
	max-width: min(280px, 46vw);
	max-height: 50px;
}

.primary-navigation a {
	padding: 10px 13px;
	border-radius: 8px;
	color: var(--gp-ink);
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
	font-size: .94rem;
	font-weight: 400;
	letter-spacing: .012em;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
}

.header-cta,
.menu-toggle {
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
}

.home .site-header:not(.is-scrolled) .primary-navigation > ul > li > a,
.front-page .site-header:not(.is-scrolled) .primary-navigation > ul > li > a {
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 29, 68, .78), 0 4px 16px rgba(0, 29, 68, .38);
}

.primary-navigation .current-menu-item > a,
.primary-navigation a:hover {
	color: #fff;
	background: var(--gp-primary);
}

.header-cta {
	color: #fff;
	background: var(--gp-secondary);
	border-color: var(--gp-secondary);
	box-shadow: 0 6px 16px rgba(244, 163, 0, .23);
}

.header-cta:hover {
	background: #d88f00;
	border-color: #d88f00;
}

/* Hero and quick search */
.home-hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(610px, 76vh, 780px);
	background-color: #0756a4;
	isolation: isolate;
}

.home-hero::after {
	display: none;
}

.hero-slider__slides,
.hero-slider__slide,
.hero-slider__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-slider__slide {
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .75s ease;
}

.hero-slider__slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.hero-slider__slide::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 70, 145, .88), rgba(13, 101, 189, .66)), linear-gradient(180deg, transparent 58%, rgba(2, 38, 83, .45));
	content: "";
	pointer-events: none;
}

.hero-slider__image {
	object-fit: cover;
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	height: 100%;
	align-content: center;
	justify-items: center;
	gap: 34px;
	padding-top: 126px;
	padding-bottom: 150px;
	text-align: center;
}

.home-hero__copy {
	max-width: 970px;
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
}

.home-hero .eyebrow {
	display: inline-flex;
	padding: 6px 11px;
	margin-bottom: 18px;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, .11);
}

.home-hero .eyebrow:empty {
	display: none;
}

.home-hero h1,
.home-hero h2 {
	max-width: 940px;
	margin: 0;
	color: #fff;
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
	font-size: clamp(2.55rem, 6.2vw, 5.4rem);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -.045em;
	text-shadow: 0 4px 24px rgba(0, 34, 79, .36);
	text-wrap: balance;
}

.home-hero__text {
	max-width: 720px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, .92);
	font-size: clamp(1rem, 2vw, 1.3rem);
	font-style: italic;
	text-shadow: 0 2px 14px rgba(0, 34, 79, .4);
}

.hero-slider__search {
	position: absolute;
	right: 0;
	bottom: 64px;
	left: 0;
	z-index: 5;
}

.hero-slider__search .property-search {
	margin-inline: auto;
}

.gp-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	place-items: center;
	color: #fff;
	background: rgba(16, 28, 43, .48);
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 50%;
	font-size: 1.75rem;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.gp-slider__arrow:hover,
.gp-slider__arrow:focus-visible {
	color: #fff;
	background: var(--gp-primary);
	transform: translateY(-50%) scale(1.06);
}

.gp-slider__arrow--prev {
	left: 24px;
}

.gp-slider__arrow--next {
	right: 24px;
}

.gp-slider__dots {
	position: absolute;
	right: 0;
	bottom: 16px;
	left: 0;
	z-index: 6;
	display: flex;
	justify-content: center;
	gap: 7px;
}

.gp-slider__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	background: rgba(255, 255, 255, .55);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 1px 7px rgba(0, 0, 0, .25);
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.gp-slider__dots button[aria-current="true"] {
	width: 27px;
	background: #fff;
}

.no-js .gp-slider__arrow,
.no-js .gp-slider__dots,
.no-js .property-showcase__thumbs {
	display: none;
}

.property-search--compact {
	display: grid;
	grid-template-columns: 150px minmax(220px, 1fr) 54px;
	gap: 0;
	width: min(100%, 760px);
	max-width: 760px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 14px;
	box-shadow: 0 18px 54px rgba(0, 27, 66, .25);
}

.property-search--compact .search-field {
	position: relative;
}

.property-search--compact label {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.property-search--compact input:not([type=checkbox]) {
	height: 54px;
	min-height: 54px;
	padding: 12px 16px;
	border: 0;
	border-radius: 0;
}

.property-search--compact .search-field--code input {
	border-right: 1px solid var(--gp-line);
	border-radius: 13px 0 0 13px;
}

.property-search--compact .search-actions {
	display: block;
}

.property-search--compact .search-submit {
	width: 46px;
	min-width: 46px;
	height: 46px;
	min-height: 46px;
	padding: 0;
	margin: 4px;
	border: 0;
	border-radius: 11px;
	color: #172334;
	background: var(--gp-secondary);
	box-shadow: none;
	font-size: 1.35rem;
}

.property-search--compact .search-submit span:last-child {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* Developer and area taxonomy showcases */
.taxonomy-showcase {
	position: relative;
	overflow: hidden;
}

.taxonomy-showcase--developers {
	background:
		radial-gradient(circle at 9% 18%, rgba(13, 101, 189, .09), transparent 27%),
		#fff;
}

.taxonomy-showcase--areas {
	background:
		radial-gradient(circle at 91% 18%, rgba(244, 163, 0, .11), transparent 26%),
		linear-gradient(180deg, #f7faff 0%, #eef5fc 100%);
}

.taxonomy-showcase__heading {
	align-items: flex-start;
	margin-bottom: 24px;
}

.taxonomy-showcase__heading > div {
	max-width: 720px;
}

.taxonomy-showcase__heading h2 {
	margin-bottom: 8px;
}

.taxonomy-showcase__intro {
	max-width: 650px;
	margin: 0;
	color: var(--gp-muted);
}

.taxonomy-showcase__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 14px;
}

.taxonomy-showcase__card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 88px;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1px solid #d7e2ed;
	border-radius: 15px;
	color: var(--gp-ink);
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 7px 22px rgba(22, 49, 79, .07);
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.taxonomy-showcase__card:hover,
.taxonomy-showcase__card:focus-visible {
	border-color: #9ebedc;
	color: var(--gp-ink);
	box-shadow: 0 15px 34px rgba(22, 49, 79, .14);
	transform: translateY(-3px);
}

.taxonomy-showcase__icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(145deg, var(--gp-primary), var(--gp-primary-dark));
	box-shadow: 0 8px 18px rgba(13, 101, 189, .2);
}

.taxonomy-showcase--areas .taxonomy-showcase__icon {
	color: #634900;
	background: linear-gradient(145deg, #ffd761, #f2ad19);
	box-shadow: 0 8px 18px rgba(210, 146, 8, .2);
}

.taxonomy-showcase__content {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.taxonomy-showcase__content strong {
	overflow: hidden;
	font-size: .96rem;
	font-weight: 800;
	letter-spacing: -.015em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.taxonomy-showcase__content small {
	color: var(--gp-muted);
	font-size: .76rem;
}

.taxonomy-showcase__arrow {
	color: var(--gp-primary);
	font-size: 1.12rem;
	font-weight: 800;
	transition: transform .2s ease;
}

.taxonomy-showcase__card:hover .taxonomy-showcase__arrow,
.taxonomy-showcase__card:focus-visible .taxonomy-showcase__arrow {
	transform: translateX(3px);
}

/* Tier sections */
.listing-tier {
	background: var(--gp-soft);
}

.listing-tier + .listing-tier {
	border-top: 1px solid var(--gp-line);
}

.section-heading--tier {
	align-items: center;
	margin-bottom: 18px;
}

.section-heading--tier > div {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0 9px;
}

.section-heading--tier h2 {
	margin: 0;
	font-family: "Plus Jakarta Sans", Inter, var(--gp-font);
	font-size: 1.24rem;
	letter-spacing: -.02em;
}

.section-heading--tier p {
	grid-column: 1 / -1;
	margin: 6px 0 0;
	color: var(--gp-muted);
	font-size: .82rem;
}

.tier-pill {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 4px 10px;
	border-radius: 999px;
	color: #fff;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.tier-pill--gold {
	background: linear-gradient(135deg, #f2ca34, #bf8f00);
}

.tier-pill--silver {
	background: linear-gradient(135deg, #bcc5ce, #7c8794);
}

.listing-tier .text-link {
	color: var(--gp-primary);
	font-size: .86rem;
	text-decoration: none;
}

/* Property cards */
.property-grid {
	gap: 16px;
}

.property-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
	border: 1px solid #d7e1ea;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(22, 49, 79, .08);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.property-card:hover {
	border-color: #a9c5df;
	box-shadow: 0 18px 42px rgba(22, 49, 79, .15);
	transform: translateY(-4px);
}

.property-card__media {
	position: relative;
	flex: 0 0 auto;
	padding: 7px 7px 0;
}

.property-card__image {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: 11px;
}

.property-card__image::after {
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(180deg, transparent, rgba(8, 17, 29, .78));
	content: "";
	pointer-events: none;
}

.property-card__badges {
	inset: 10px 10px auto;
	z-index: 2;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: space-between;
}

.property-card__badge-group {
	display: flex;
	gap: 5px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.property-card__badge-group--right {
	justify-content: flex-end;
	margin-left: auto;
}

.badge {
	padding: 4px 8px;
	border-radius: 999px;
	font-size: .62rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.badge--gold {
	color: #fff;
	background: linear-gradient(135deg, #e8bf29, #b78600);
}

.badge--silver {
	color: #fff;
	background: linear-gradient(135deg, #b5bec7, #7d8792);
}

.badge--offer {
	background: #12ad79;
}

.badge--type {
	background: rgba(24, 28, 36, .86);
}

.property-card__price {
	position: absolute;
	right: 15px;
	bottom: 11px;
	left: 15px;
	z-index: 2;
	overflow: hidden;
	color: #fff;
	font-size: clamp(.86rem, 1.4vw, 1.06rem);
	font-style: normal;
	font-weight: 800;
	text-align: left;
	text-overflow: ellipsis;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .72);
	white-space: nowrap;
}

.property-card__favorite {
	position: absolute;
	right: 10px;
	bottom: -19px;
	z-index: 3;
	width: 38px;
	height: 38px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(18, 44, 70, .17);
}

.property-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 15px 14px 13px;
}

.property-card__title {
	display: -webkit-box;
	min-height: 2.55em;
	margin: 0 40px 9px 0;
	overflow: hidden;
	font-size: .98rem;
	font-weight: 500;
	line-height: 1.28;
	text-transform: uppercase;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.property-card__meta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	margin-bottom: 12px;
}

.property-card__location {
	display: -webkit-box;
	min-height: 2.8em;
	margin: 0;
	overflow: hidden;
	color: #7a8593;
	font-size: .73rem;
	line-height: 1.45;
	white-space: normal;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.property-card__code {
	color: #7a8593;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .68rem;
}

.property-card__specs {
	gap: 0;
	padding: 10px 0 0;
	margin-top: auto;
	border-top: 1px solid var(--gp-line);
}

.property-card__specs li {
	padding: 0;
	color: #313c4b;
	background: transparent;
	border-radius: 0;
	font-size: .68rem;
}

.property-card__specs li:not(:last-child)::after {
	margin: 0 6px;
	color: #a1aab5;
	content: "·";
}

.property-card.skeleton {
	min-height: 350px;
}

.tier-promo {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: space-between;
	gap: clamp(18px, 3vw, 34px);
	padding: clamp(14px, 2vw, 20px) clamp(18px, 3vw, 30px);
	margin-top: 28px;
	border: 1px solid transparent;
	border-radius: 16px;
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
	isolation: isolate;
}

.tier-promo::before,
.tier-promo::after {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.tier-promo::before {
	top: -125px;
	right: 8%;
	width: 290px;
	height: 290px;
}

.tier-promo::after {
	bottom: -150px;
	left: -90px;
	width: 260px;
	height: 260px;
}

.tier-promo__copy {
	max-width: 760px;
}

.tier-promo h3 {
	margin: 0 0 3px;
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.tier-promo p {
	margin: 0;
	font-size: clamp(.8rem, 1.1vw, .9rem);
	line-height: 1.4;
}

.tier-promo__button {
	flex: 0 0 auto;
	gap: 7px;
	min-height: 34px;
	padding: 7px 14px;
	border: 1px solid currentColor;
	border-radius: 999px;
	box-shadow: none;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.tier-promo__button-icon {
	font-size: .95rem;
	line-height: 1;
}

.tier-promo--gold {
	color: #30260d;
	background: linear-gradient(125deg, #fffdf4 0%, #fbe99f 54%, #e5bd35 100%);
	border-color: #d7aa17;
	box-shadow: 0 24px 58px rgba(139, 102, 0, .18), 0 0 42px rgba(229, 183, 25, .38), inset 0 1px 0 rgba(255, 255, 255, .96);
	box-shadow: 0 24px 58px rgba(139, 102, 0, .18), 0 0 42px color-mix(in srgb, var(--gp-gold-glow, #e5b719) 38%, transparent), inset 0 1px 0 rgba(255, 255, 255, .96);
}

.tier-promo--gold::before {
	background: color-mix(in srgb, var(--gp-gold-glow, #e5b719) 34%, transparent);
}

.tier-promo--gold::after {
	background: rgba(255, 255, 255, .3);
}

.tier-promo--gold p {
	color: #5d4a18;
}

.tier-promo--gold .tier-promo__button {
	color: #745500;
	background: rgba(255, 253, 240, .72);
	border-color: #8e6a00;
}

.tier-promo--gold .tier-promo__button:hover,
.tier-promo--gold .tier-promo__button:focus-visible {
	color: #523d00;
	background: #fffdf0;
	border-color: #745500;
	transform: translateY(-1px);
}

.tier-promo--silver {
	color: #202b39;
	background: linear-gradient(125deg, #fff 0%, #e9edf2 54%, #bec8d3 100%);
	border-color: #a6b3c1;
	box-shadow: 0 24px 58px rgba(61, 76, 96, .16), 0 0 42px rgba(170, 183, 198, .42), inset 0 1px 0 rgba(255, 255, 255, .98);
	box-shadow: 0 24px 58px rgba(61, 76, 96, .16), 0 0 42px color-mix(in srgb, var(--gp-silver-glow, #aab7c6) 42%, transparent), inset 0 1px 0 rgba(255, 255, 255, .98);
}

.tier-promo--silver::before {
	background: color-mix(in srgb, var(--gp-silver-glow, #aab7c6) 34%, transparent);
}

.tier-promo--silver::after {
	background: rgba(255, 255, 255, .42);
}

.tier-promo--silver p {
	color: #4b5869;
}

.tier-promo--silver .tier-promo__button {
	color: #465568;
	background: rgba(255, 255, 255, .72);
	border-color: #657489;
}

.tier-promo--silver .tier-promo__button:hover,
.tier-promo--silver .tier-promo__button:focus-visible {
	color: #283445;
	background: #fff;
	border-color: #465568;
	transform: translateY(-1px);
}

.home-faq {
	background: #fff;
}

.home-faq__heading {
	width: min(100%, 720px);
	margin: 0 auto 30px;
	text-align: center;
}

.home-faq__heading h2,
.home-cta__inner,
.home-cta__inner h2,
.home-faq__item summary {
	font-family: "Carnas", "Plus Jakarta Sans", Inter, sans-serif;
}

.home-faq__heading h2 {
	margin-bottom: 12px;
	font-weight: 500;
}

.home-faq__heading > p:last-child {
	margin: 0;
	color: var(--gp-muted);
	line-height: 1.75;
}

.home-faq__list {
	display: grid;
	width: min(100%, 900px);
	gap: 12px;
	margin-inline: auto;
}

.home-faq__item {
	overflow: hidden;
	background: #fff;
	border: 1px solid #dfe7ee;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(27, 52, 79, .055);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.home-faq__item[open] {
	border-color: rgba(13, 101, 189, .34);
	box-shadow: 0 14px 34px rgba(27, 74, 121, .09);
}

.home-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 68px;
	padding: 18px 22px;
	color: var(--gp-ink);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
	display: none;
}

.home-faq__icon {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	background: #edf6ff;
	border-radius: 50%;
}

.home-faq__icon::before,
.home-faq__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	content: "";
	background: var(--gp-primary);
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform .2s ease;
}

.home-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq__item[open] .home-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq__answer {
	padding: 0 22px 20px;
	color: #536275;
	line-height: 1.75;
}

.home-faq__answer::before {
	display: block;
	margin-bottom: 17px;
	content: "";
	border-top: 1px solid #e8edf2;
}

.home-faq__answer > :first-child {
	margin-top: 0;
}

.home-faq__answer > :last-child {
	margin-bottom: 0;
}

.home-faq__answer a {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.home-cta {
	padding: 64px 0;
	background: #eef2f5;
}

.home-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.25fr);
	align-items: center;
	gap: clamp(34px, 5vw, 72px);
	padding: clamp(34px, 4.5vw, 58px);
	color: var(--gp-ink);
	background: #fff;
	border: 1px solid #e1e7ed;
	border-radius: 18px;
	box-shadow: 0 22px 60px rgba(30, 50, 71, .12);
}

.home-cta__content {
	max-width: 510px;
}

.home-cta__inner h2 {
	margin-bottom: 16px;
	color: var(--gp-ink);
	font-size: clamp(1.55rem, 2.4vw, 2.2rem);
	font-weight: 500;
	line-height: 1.25;
}

.home-cta__inner p {
	margin: 0 0 26px;
	color: #46566a;
	font-family: var(--gp-font, "Plus Jakarta Sans", Inter, sans-serif);
	font-size: 1rem;
	font-style: italic;
	line-height: 1.8;
}

.home-cta__button {
	width: fit-content;
	min-height: 46px;
	padding-inline: 25px;
	color: #fff;
	background: var(--gp-primary);
	border-color: var(--gp-primary);
	border-radius: 7px;
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.home-cta__button:hover,
.home-cta__button:focus-visible {
	color: #fff;
	background: #08549f;
	border-color: #08549f;
	transform: translateY(-1px);
}

.home-cta__media {
	overflow: hidden;
	margin: 0;
	aspect-ratio: 16 / 9;
	background: #e9eff4;
	border: 2px solid #b7c1ca;
	border-radius: 10px;
	box-shadow: 0 9px 24px rgba(20, 43, 67, .11);
}

.home-cta__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Archive */
.page-hero {
	padding: 64px 0;
	color: #fff;
	background: linear-gradient(135deg, #074c92, var(--gp-primary));
}

.page-hero .eyebrow,
.page-hero--small p:last-child,
.page-hero .breadcrumbs,
.page-hero .breadcrumbs a {
	color: rgba(255, 255, 255, .82);
}

.archive-properties {
	background: #f5f9fc;
}

.archive-properties .archive-layout {
	display: block;
	padding-block: 42px 72px;
}

.archive-properties .filter-panel {
	position: static;
	width: min(100%, 860px);
	margin-inline: auto;
}

.property-search--full {
	display: block;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.property-search__quick {
	padding: 24px 30px 18px;
	color: #fff;
	background: #3e4356;
	border-radius: 18px;
	box-shadow: 0 15px 32px rgba(36, 45, 65, .2);
}

.property-search__quick-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 58px;
	gap: 0;
	padding: 4px;
	background: #fff;
	border-radius: 15px;
}

.property-search__quick .search-field--keyword {
	position: relative;
}

.property-search__keyword-icon {
	position: absolute;
	top: 50%;
	left: 16px;
	z-index: 1;
	display: grid;
	color: #94a0af;
	transform: translateY(-50%);
	pointer-events: none;
}

.property-search--full .property-search__quick input[type=search] {
	min-height: 54px;
	padding: 11px 16px 11px 48px;
	border: 0;
	border-radius: 12px 0 0 12px;
	background: #fff;
	box-shadow: none;
	font-size: 1rem;
}

.property-search__quick-submit {
	width: 54px;
	min-width: 54px;
	min-height: 54px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	color: #172334;
	background: var(--gp-secondary);
	box-shadow: none;
}

.property-search__quick-submit:hover,
.property-search__quick-submit:focus-visible {
	color: #172334;
	background: #ffb62e;
	border-color: transparent;
}

.property-search__toggle {
	display: flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 10px 16px 3px;
	margin: 8px auto 0;
	border: 0;
	color: #fff;
	background: transparent;
	font-weight: 800;
	cursor: pointer;
}

.property-search__chevron {
	transition: transform .2s ease;
}

.property-search__toggle[aria-expanded="false"] .property-search__chevron {
	transform: rotate(180deg);
}

.property-search__advanced {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px 18px;
	padding: 28px;
	margin-top: 24px;
	border: 1px solid #d6e0e8;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(34, 56, 79, .1);
}

.property-search__advanced[hidden] {
	display: none;
}

.property-search--full label,
.property-search--full legend {
	display: block;
	padding: 0;
	margin: 0 0 8px;
	color: #516070;
	font-size: .76rem;
	font-weight: 850;
	letter-spacing: .045em;
	line-height: 1.25;
	text-transform: uppercase;
}

.property-search--full input:not([type=checkbox]),
.property-search--full select {
	min-height: 54px;
	padding: 11px 14px;
	border-color: #ccd6df;
	border-radius: 11px;
	background-color: #f5f8fa;
	box-shadow: inset 0 1px 2px rgba(22, 49, 79, .025);
}

.property-search--full input::placeholder {
	color: #8a949f;
	opacity: 1;
}

.search-range {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

.search-range__inputs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.search-range--price,
.property-search--full .search-actions {
	grid-column: 1 / -1;
}

.property-search--full .search-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	padding-top: 3px;
}

.property-search--full .search-submit {
	min-width: 200px;
	min-height: 52px;
	gap: 10px;
	border-color: var(--gp-secondary);
	border-radius: 12px;
	color: #172334;
	background: var(--gp-secondary);
	box-shadow: 0 9px 20px rgba(216, 139, 20, .22);
	font-size: 1rem;
}

.property-search--full .search-submit:hover,
.property-search--full .search-submit:focus-visible {
	color: #172334;
	background: #ffb62e;
	border-color: #ffb62e;
}

.property-search__reset {
	color: #566577;
	font-size: .86rem;
	font-weight: 750;
}

.archive-results {
	margin-top: 38px;
}

.active-filters span {
	color: var(--gp-primary-dark);
	background: var(--gp-primary-soft);
}

@media (max-width: 679px) {
	.archive-properties .archive-layout {
		padding-block: 26px 56px;
	}

	.property-search__quick {
		padding: 16px 14px 12px;
		border-radius: 15px;
		box-shadow: 0 12px 26px rgba(36, 45, 65, .18);
	}

	.property-search__quick-row {
		grid-template-columns: minmax(0, 1fr) 54px;
	}

	.property-search--full .property-search__quick input[type=search] {
		min-height: 52px;
		padding: 10px 8px 10px 43px;
		font-size: .86rem;
	}

	.property-search__keyword-icon {
		left: 13px;
	}

	.property-search__quick-submit {
		width: 50px;
		min-width: 50px;
		min-height: 52px;
	}

	.property-search__toggle {
		min-height: 44px;
		padding-top: 8px;
		font-size: .9rem;
	}

	.property-search__advanced {
		grid-template-columns: 1fr;
		gap: 17px;
		padding: 20px 16px;
		margin-top: 16px;
		border-radius: 15px;
		box-shadow: 0 10px 24px rgba(34, 56, 79, .08);
	}

	.search-range--price,
	.property-search--full .search-actions {
		grid-column: auto;
	}

	.property-search--full .search-actions {
		align-items: stretch;
		flex-direction: column;
		justify-content: center;
		gap: 11px;
	}

	.property-search--full .search-submit {
		order: -1;
		width: 100%;
		min-width: 0;
	}

	.property-search__reset {
		align-self: center;
	}

	.archive-results {
		margin-top: 30px;
	}
}

@media (min-width: 960px) {
	.archive-properties .archive-layout {
		display: grid;
		grid-template-columns: minmax(290px, 320px) minmax(0, 1fr);
		align-items: start;
		gap: 28px;
	}

	.archive-properties .filter-panel {
		position: sticky;
		top: 100px;
		width: 100%;
		max-height: calc(100vh - 120px);
		padding-right: 5px;
		margin: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-color: #b8c5d1 transparent;
		scrollbar-width: thin;
	}

	.property-search__quick {
		padding: 10px 10px 7px;
		border-radius: 13px;
	}

	.property-search__quick-row {
		grid-template-columns: minmax(0, 1fr) 40px;
		align-items: stretch;
		padding: 2px;
		border-radius: 10px;
	}

	.property-search--full .property-search__quick-row .search-field--keyword {
		grid-column: 1;
		grid-row: 1;
		min-width: 0;
	}

	.property-search--full .property-search__quick-row .property-search__quick-submit {
		grid-column: 2;
		grid-row: 1;
	}

	.property-search__keyword-icon {
		left: 10px;
	}

	.property-search__keyword-icon svg {
		width: 18px;
		height: 18px;
	}

	.property-search--full .property-search__quick input[type=search] {
		height: 40px;
		min-height: 40px;
		padding: 8px 5px 8px 34px;
		border-radius: 8px 0 0 8px;
		font-size: .75rem;
	}

	.property-search__quick-submit {
		position: relative;
		isolation: isolate;
		overflow: hidden;
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
		align-self: stretch;
		padding: 0;
		margin: 0;
		border: 1px solid rgba(139, 84, 0, .28);
		border-radius: 8px;
		background: linear-gradient(145deg, #ffe18b 0%, #f8bd3c 46%, #e99a12 100%);
		box-shadow:
			0 4px 10px rgba(199, 126, 17, .24),
			inset 0 1px 0 rgba(255, 255, 255, .78),
			inset 0 -1px 0 rgba(112, 65, 0, .16);
		transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	}

	.property-search__quick-submit::before {
		position: absolute;
		z-index: 0;
		top: 1px;
		right: 1px;
		left: 1px;
		height: 46%;
		border-radius: 7px 7px 50% 50%;
		background: linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, 0));
		content: "";
		pointer-events: none;
	}

	.property-search__quick-submit svg {
		position: relative;
		z-index: 1;
		width: 20px;
		height: 20px;
		filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .5));
	}

	.property-search__quick-submit:hover,
	.property-search__quick-submit:focus-visible {
		color: #111b29;
		border-color: rgba(126, 73, 0, .38);
		background: linear-gradient(145deg, #ffe9aa 0%, #ffc852 46%, #efa51b 100%);
		box-shadow:
			0 6px 14px rgba(199, 126, 17, .32),
			inset 0 1px 0 rgba(255, 255, 255, .82),
			inset 0 -1px 0 rgba(112, 65, 0, .14);
		transform: translateY(-1px);
	}

	.property-search__quick-submit:active {
		box-shadow:
			0 5px 12px rgba(199, 126, 17, .25),
			inset 0 1px 2px rgba(112, 65, 0, .14);
		transform: translateY(0);
	}

	.property-search__toggle {
		min-height: 34px;
		gap: 6px;
		padding: 6px 6px 0;
		margin-top: 3px;
		font-size: .76rem;
	}

	.property-search__toggle > svg:first-child {
		width: 17px;
		height: 17px;
	}

	.property-search__advanced {
		gap: 15px;
		padding: 18px 15px;
		margin-top: 14px;
		border-radius: 15px;
		box-shadow: 0 9px 23px rgba(34, 56, 79, .08);
	}

	.property-search--full label,
	.property-search--full legend {
		margin-bottom: 6px;
		font-size: .69rem;
	}

	.property-search--full input:not([type=checkbox]),
	.property-search--full select {
		min-height: 46px;
		padding: 9px 10px;
		border-radius: 9px;
		font-size: .87rem;
	}

	.search-range__inputs {
		gap: 8px;
	}

	.property-search--full .search-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 9px;
	}

	.property-search--full .search-submit {
		order: -1;
		width: 100%;
		min-width: 0;
		min-height: 47px;
	}

	.property-search__reset {
		align-self: center;
	}

	.archive-results {
		min-width: 0;
		margin-top: 0;
	}

	.archive-properties .archive-results .property-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (min-width: 1080px) {
	.archive-properties .archive-results .property-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.archive-properties .archive-results .property-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Property detail */
.property-detail {
	background: #fff;
}

.property-showcase.container {
	width: min(calc(100% - 40px), 1320px);
	max-width: none;
	margin-top: 18px;
}

.property-showcase__viewport {
	position: relative;
	overflow: hidden;
	aspect-ratio: 21 / 9;
	background: #dfe8f1;
	border-radius: 15px;
	box-shadow: 0 18px 52px rgba(17, 53, 89, .13);
}

.property-showcase__slides,
.property-showcase__slide,
.property-showcase__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.property-showcase__slide {
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .55s ease;
}

.property-showcase__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.property-showcase__slide img {
	object-fit: cover;
}

.property-showcase__badges {
	position: absolute;
	top: 22px;
	left: 22px;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.property-showcase .gp-slider__dots {
	bottom: 17px;
}

.property-showcase .gallery-open {
	right: 18px;
	bottom: 16px;
	z-index: 7;
	min-height: 36px;
	padding: 7px 12px;
	color: #fff;
	background: rgba(16, 28, 43, .68);
	border-color: rgba(255, 255, 255, .35);
	box-shadow: none;
	font-size: .76rem;
}

.property-showcase__thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 10px 2px 3px;
	scrollbar-width: thin;
}

.property-showcase__thumbs button {
	overflow: hidden;
	flex: 0 0 96px;
	height: 64px;
	padding: 0;
	background: #e7edf3;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
}

.property-showcase__thumbs button[aria-current="true"] {
	border-color: var(--gp-primary);
	box-shadow: 0 0 0 1px var(--gp-primary);
}

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

.property-header {
	padding-top: 30px;
}

.property-header h1 {
	font-size: clamp(2.15rem, 4vw, 3.65rem);
}

.property-header__badges {
	flex-wrap: wrap;
}

.property-header__price p {
	color: var(--gp-primary);
}

.sticky-card {
	border-color: #cfdae5;
	box-shadow: 0 16px 40px rgba(17, 53, 89, .12);
}

.sidebar-owner__avatar {
	display: grid;
	overflow: hidden;
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	place-items: center;
	color: #fff;
	background: var(--gp-primary);
	border-radius: 50%;
}

.sidebar-owner__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-media-section .external-embed,
.external-embed--video {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	min-height: 0;
	padding: 0;
	aspect-ratio: 16 / 9;
	background: #eef4f9;
	border: 1px solid #cbd8e4;
	border-radius: 13px;
}

.external-embed--map {
	position: relative;
	overflow: hidden;
	min-height: 340px;
	padding: 0;
}

.external-embed__prompt {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: center;
	justify-items: center;
	padding: 28px;
	text-align: center;
}

.external-embed iframe,
.property-media-section .external-embed iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	border: 0;
}

.button--whatsapp,
.floating-whatsapp {
	background: #20bd67;
	border-color: #20bd67;
}

.button--whatsapp:hover,
.floating-whatsapp:hover {
	background: #159a51;
	border-color: #159a51;
}

/* Footer */
.site-footer {
	padding-top: 54px;
	color: #365643;
	background: #e8f4e8;
}

.footer-title,
.footer-heading {
	color: #173c29;
}

.site-footer a {
	color: #285b3d;
}

.footer-taxonomy-links {
	display: grid;
	gap: 24px;
	padding-top: 30px;
	margin-top: 34px;
	border-top: 1px solid rgba(35, 83, 54, .16);
}

.footer-taxonomy-links__group .footer-heading {
	margin-bottom: 12px;
}

.footer-taxonomy-links__group ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-taxonomy-links__group a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	font-size: .84rem;
	font-weight: 650;
	line-height: 1.25;
	text-decoration: none;
	background: rgba(255, 255, 255, .56);
	border: 1px solid rgba(35, 83, 54, .15);
	border-radius: 999px;
	transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-taxonomy-links__group a:hover,
.footer-taxonomy-links__group a:focus-visible {
	color: #fff;
	background: #285b3d;
	border-color: #285b3d;
	transform: translateY(-1px);
}

.footer-bottom {
	border-color: rgba(35, 83, 54, .16);
}

.floating-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	color: #fff;
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 10px 26px rgba(12, 74, 42, .3);
	transition: transform .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
	color: #fff;
	transform: translateY(-3px);
}

@media (min-width: 680px) {
	.property-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-taxonomy-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.home .site-header:not(.is-scrolled) .primary-navigation .sub-menu,
	.front-page .site-header:not(.is-scrolled) .primary-navigation .sub-menu {
		background: #fff;
	}

	.home .site-header:not(.is-scrolled) .primary-navigation .sub-menu a,
	.front-page .site-header:not(.is-scrolled) .primary-navigation .sub-menu a {
		color: var(--gp-ink);
		text-shadow: none;
	}

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

@media (min-width: 1100px) {
	.listing-tier > .container > .property-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.archive-results .property-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 899px) {
	.home-cta__inner {
		grid-template-columns: 1fr;
	}

	.home-cta__content {
		max-width: 660px;
	}

	.home .site-header,
	.front-page .site-header {
		background: rgba(255, 255, 255, .98);
		box-shadow: 0 2px 14px rgba(25, 46, 72, .1);
		backdrop-filter: blur(14px);
	}

	.home .site-header:not(.is-scrolled) .site-title,
	.front-page .site-header:not(.is-scrolled) .site-title,
	.home .site-header:not(.is-scrolled) .menu-toggle,
	.front-page .site-header:not(.is-scrolled) .menu-toggle {
		color: var(--gp-ink);
	}

	.home .site-header:not(.is-scrolled) .primary-navigation a,
	.front-page .site-header:not(.is-scrolled) .primary-navigation a {
		color: var(--gp-ink);
		text-shadow: none;
	}

	.js .primary-navigation.is-open {
		color: var(--gp-ink);
		background: rgba(255, 255, 255, .99);
		border-top: 1px solid rgba(216, 225, 234, .72);
		box-shadow: 0 18px 34px rgba(20, 48, 78, .14);
	}

	.js .primary-navigation.is-open li + li {
		margin-top: 4px;
	}

	.js .primary-navigation.is-open a {
		display: flex;
		align-items: center;
		min-height: 50px;
		padding: 11px 16px;
		border: 1px solid transparent;
		border-radius: 10px;
		font-size: 1rem;
		letter-spacing: .01em;
		line-height: 1.45;
	}

	.home .site-header:not(.is-scrolled) .primary-navigation.is-open > ul > li > a,
	.front-page .site-header:not(.is-scrolled) .primary-navigation.is-open > ul > li > a,
	.home .site-header:not(.is-scrolled) .primary-navigation.is-open .sub-menu a,
	.front-page .site-header:not(.is-scrolled) .primary-navigation.is-open .sub-menu a {
		color: var(--gp-ink);
		text-shadow: none;
	}

	.home .site-header:not(.is-scrolled) .primary-navigation .current-menu-item > a,
	.front-page .site-header:not(.is-scrolled) .primary-navigation .current-menu-item > a,
	.home .site-header:not(.is-scrolled) .primary-navigation a:hover,
	.front-page .site-header:not(.is-scrolled) .primary-navigation a:hover {
		color: #fff;
	}

	.home .site-header:not(.is-scrolled) .primary-navigation.is-open .current-menu-item > a,
	.front-page .site-header:not(.is-scrolled) .primary-navigation.is-open .current-menu-item > a,
	.home .site-header:not(.is-scrolled) .primary-navigation.is-open a:hover,
	.front-page .site-header:not(.is-scrolled) .primary-navigation.is-open a:hover,
	.home .site-header:not(.is-scrolled) .primary-navigation.is-open a:focus-visible,
	.front-page .site-header:not(.is-scrolled) .primary-navigation.is-open a:focus-visible {
		color: #fff;
		background: var(--gp-primary);
	}

	.primary-navigation,
	.js .primary-navigation {
		top: 78px;
	}

	.home-hero__inner {
		padding-top: 132px;
	}

	.gp-slider__arrow--prev {
		left: 13px;
	}

	.gp-slider__arrow--next {
		right: 13px;
	}

	.property-showcase__viewport {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 679px) {
	.container {
		width: min(100% - 24px, 1248px);
	}

	.section {
		padding: 38px 0;
	}

	.home-faq__heading {
		margin-bottom: 23px;
	}

	.home-faq__item summary {
		min-height: 62px;
		padding: 16px;
		font-size: .94rem;
	}

	.home-faq__answer {
		padding: 0 16px 17px;
		font-size: .92rem;
	}

	.home-cta {
		padding: 38px 0;
	}

	.home-cta__inner {
		gap: 26px;
		padding: 24px;
		border-radius: 14px;
	}

	.home-cta__inner p {
		margin-bottom: 21px;
		font-size: .94rem;
	}

	.home-cta__button {
		width: 100%;
	}

	.home-cta__media {
		border-radius: 8px;
	}

	.home-hero {
		min-height: 610px;
	}

	.home-hero__inner {
		gap: 30px;
		padding-bottom: 158px;
	}

	.home-hero h1,
	.home-hero h2 {
		font-size: clamp(2.35rem, 12vw, 3.5rem);
	}

	.hero-slider__search {
		bottom: 64px;
	}

	.gp-slider__arrow {
		width: 38px;
		height: 38px;
	}

	.property-showcase.container {
		width: min(calc(100% - 24px), 1320px);
	}

	.property-showcase__viewport {
		aspect-ratio: 4 / 3;
		border-radius: 11px;
	}

	.property-showcase__badges {
		top: 12px;
		left: 12px;
	}

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

	.property-showcase .gp-slider__dots {
		bottom: 15px;
	}

	.property-search--compact {
		grid-template-columns: 112px minmax(0, 1fr) 52px;
	}

	.property-search--compact input:not([type=checkbox]) {
		padding-inline: 11px;
		font-size: .8rem;
	}

	.section-heading--tier {
		align-items: flex-end;
	}

	.section-heading--tier .text-link {
		font-size: .76rem;
	}

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

	.taxonomy-showcase__grid {
		grid-template-columns: 1fr;
	}

	.taxonomy-showcase__card {
		min-height: 80px;
		padding: 14px;
	}

	.tier-promo {
		align-items: center;
		flex-direction: column;
		gap: 11px;
		padding: 14px 16px;
		text-align: center;
	}

	.tier-promo .button {
		width: auto;
	}

	.floating-whatsapp {
		right: 14px;
		bottom: 14px;
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header,
	.property-card,
	.home-package-card,
	.taxonomy-showcase__card,
	.taxonomy-showcase__arrow,
	.tier-promo__button,
	.floating-whatsapp {
		transition: none;
	}
}
