:root {
	--fl-forest: #153f2d;
	--fl-forest-deep: #0d2c20;
	--fl-leaf: #3f6b4d;
	--fl-gold: #b79252;
	--fl-ivory: #f5f2ea;
	--fl-paper: #fcfbf7;
	--fl-ink: #202720;
	--fl-muted: #667068;
	--fl-line: #d9ddd5;
	--fl-shell: min(1180px, calc(100vw - 48px));
}

.fl-loader {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: center;
	background: var(--fl-paper);
	opacity: 1;
	visibility: visible;
	transition: opacity .45s ease, visibility .45s ease;
}

.fl-loader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.fl-loader__content {
	display: flex;
	width: min(270px, 62vw);
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.fl-loader__content img {
	display: block;
	width: 100%;
	height: auto;
	animation: fl-loader-logo 1.4s ease-in-out infinite alternate;
}

.fl-loader__line {
	position: relative;
	display: block;
	width: 88px;
	height: 2px;
	overflow: hidden;
	background: rgba(21, 63, 45, .15);
}

.fl-loader__line::after {
	position: absolute;
	inset: 0;
	background: var(--fl-gold);
	content: "";
	transform: translateX(-100%);
	animation: fl-loader-line 1.1s ease-in-out infinite;
}

@keyframes fl-loader-logo {
	from { opacity: .72; transform: translateY(2px); }
	to { opacity: 1; transform: translateY(-2px); }
}

@keyframes fl-loader-line {
	0% { transform: translateX(-100%); }
	50%, 100% { transform: translateX(100%); }
}

body.home #main-content,
body.home #left-area,
body.home .entry-content,
body.home .container {
	padding: 0 !important;
	width: 100% !important;
	max-width: none !important;
}

body.home #main-content .container::before,
body.home .entry-title,
body.home #sidebar {
	display: none !important;
}

body.home #main-content {
	background: var(--fl-paper);
}

@media (min-width: 981px) {
	body.home #page-container {
		padding-top: 92px !important;
	}

	body.home #main-header,
	body.home #main-header .container {
		height: 92px !important;
		min-height: 92px;
	}

	body.home #main-header {
		border-bottom: 1px solid rgba(21, 63, 45, .1);
		box-shadow: none;
	}

	body.home #main-header .container {
		width: min(1180px, calc(100% - 48px)) !important;
		margin-inline: auto;
	}

	body.home #main-header #logo {
		max-height: 58px !important;
	}

	body.home #et-top-navigation {
		padding-top: 26px !important;
	}

	body.home #top-menu-nav > ul > li {
		padding-right: 28px;
	}

	body.home #top-menu-nav > ul > li > a {
		padding-bottom: 32px !important;
		color: var(--fl-ink);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: .04em;
	}

	body.home #top-menu-nav > ul > li:last-child {
		padding-right: 0;
	}

	body.home #top-menu-nav > ul > li:last-child > a {
		padding: 11px 17px !important;
		background: var(--fl-forest);
		color: #fff !important;
	}
}

body.home .joinchat {
	--bottom: 104px;
}

.fl-home,
.fl-home * {
	box-sizing: border-box;
}

.fl-home {
	overflow: hidden;
	background: var(--fl-paper);
	color: var(--fl-ink);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
}

.fl-home h1,
.fl-home h2 {
	margin: 0;
	color: inherit;
	font-family: "Marcellus", serif;
	font-weight: 400;
	letter-spacing: 0;
}

.fl-home h1 {
	max-width: 800px;
	font-size: clamp(3.3rem, 7vw, 6.7rem);
	line-height: .96;
}

.fl-home h2 {
	font-size: clamp(2.3rem, 4.4vw, 4.4rem);
	line-height: 1.05;
}

.fl-home p,
.fl-home figure {
	margin: 0;
	padding: 0;
}

.fl-home img {
	display: block;
	width: 100%;
}

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

.fl-section {
	padding: 120px 0;
}

.fl-kicker {
	margin-bottom: 24px !important;
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.fl-kicker--dark {
	color: var(--fl-leaf);
}

.fl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: .9rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.fl-button:hover {
	text-decoration: none;
}

.fl-button--light {
	background: #fff;
	color: var(--fl-forest-deep);
}

.fl-button--light:hover {
	background: var(--fl-ivory);
	color: var(--fl-forest-deep);
}

.fl-button--ghost {
	border-color: rgba(255, 255, 255, .65);
	color: #fff;
}

.fl-button--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.fl-button--gold {
	background: var(--fl-gold);
	color: #fff;
}

.fl-button--gold:hover {
	background: #c29f62;
	color: #fff;
}

.fl-button--dark {
	background: var(--fl-forest-deep);
	color: #fff;
	cursor: pointer;
}

.fl-button--dark:hover {
	background: var(--fl-leaf);
	color: #fff;
}

.fl-text-link {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--fl-gold);
	color: var(--fl-forest-deep);
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
}

.fl-text-link:hover {
	color: var(--fl-leaf);
	text-decoration: none;
}

.fl-hero {
	position: relative;
	min-height: min(860px, calc(100vh - 80px));
	color: #fff;
}

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

.fl-hero__media {
	background: url("https://floraliaresidencial.com/wp-content/uploads/2025/01/DJI_20241122122046_0132_D.jpg") center 48% / cover no-repeat;
	transform: scale(1.015);
	animation: fl-hero-in 1.1s ease-out both;
}

.fl-hero__shade {
	background: linear-gradient(90deg, rgba(8, 35, 24, .88) 0%, rgba(8, 35, 24, .58) 48%, rgba(8, 35, 24, .14) 100%);
}

.fl-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: min(760px, calc(100vh - 180px));
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 110px 0 130px;
	animation: fl-content-in .85s .15s ease-out both;
}

.fl-hero__intro {
	max-width: 660px;
	margin-top: 28px !important;
	color: rgba(255, 255, 255, .88);
	font-size: 1.2rem;
	line-height: 1.6;
}

.fl-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 38px;
}

.fl-hero__facts {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	display: grid;
	width: min(720px, 62vw);
	grid-template-columns: repeat(3, 1fr);
	background: var(--fl-ivory);
	color: var(--fl-ink);
}

.fl-hero__facts div {
	padding: 26px 30px;
	border-left: 1px solid rgba(21, 63, 45, .13);
}

.fl-hero__facts strong,
.fl-hero__facts span {
	display: block;
}

.fl-hero__facts strong {
	color: var(--fl-forest);
	font-family: "Marcellus", serif;
	font-size: 1.7rem;
	font-weight: 400;
	line-height: 1.2;
}

.fl-hero__facts span {
	margin-top: 4px;
	color: var(--fl-muted);
	font-size: .78rem;
}

.fl-intro {
	background: var(--fl-paper);
}

.fl-intro__grid {
	display: grid;
	grid-template-columns: 1.1fr .75fr;
	gap: 12vw;
	align-items: end;
}

.fl-intro__copy p {
	margin-bottom: 30px !important;
	color: var(--fl-muted);
	font-size: 1.05rem;
}

.fl-lifestyle {
	display: grid;
	min-height: 680px;
	grid-template-columns: 1.35fr .65fr;
	background: var(--fl-forest-deep);
}

.fl-lifestyle__scene {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #111f17;
}

.fl-lifestyle__scene img {
	height: auto;
	object-fit: contain;
}

.fl-lifestyle__story {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	color: #fff;
}

.fl-lifestyle__copy {
	padding: 72px 54px 20px;
}

.fl-lifestyle__copy h2 {
	font-size: clamp(2.4rem, 3.6vw, 4rem);
}

.fl-lifestyle__copy > p:last-child {
	margin-top: 24px !important;
	color: rgba(255, 255, 255, .7);
}

.fl-lifestyle__story > img {
	width: min(440px, 92%);
	max-width: none;
	margin: 0 auto -4% -8%;
}

.fl-visual {
	display: grid;
	height: min(720px, 65vw);
	min-height: 480px;
	grid-template-columns: 2fr 1fr;
	gap: 8px;
	background: var(--fl-paper);
}

.fl-visual figure {
	overflow: hidden;
}

.fl-visual img {
	height: 100%;
	object-fit: cover;
}

.fl-visual__aside img {
	object-position: 63% center;
}

.fl-amenities {
	background: var(--fl-ivory);
}

.fl-heading-row {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 80px;
	align-items: end;
}

.fl-heading-row > p {
	color: var(--fl-muted);
}

.fl-amenities__grid {
	display: grid;
	margin: 72px 0 0;
	padding: 0;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(21, 63, 45, .2);
	list-style: none;
}

.fl-amenities__grid li {
	min-height: 220px;
	padding: 34px 28px 30px 0;
	border-right: 1px solid rgba(21, 63, 45, .2);
}

.fl-amenities__grid li:not(:first-child) {
	padding-left: 28px;
}

.fl-amenities__grid li:last-child {
	border-right: 0;
}

.fl-amenities__grid li::before {
	display: block;
	width: 28px;
	height: 2px;
	margin-bottom: 44px;
	background: var(--fl-gold);
	content: "";
}

.fl-amenities__grid strong,
.fl-amenities__grid span {
	display: block;
}

.fl-amenities__grid strong {
	margin-bottom: 12px;
	color: var(--fl-forest-deep);
	font-size: 1.05rem;
}

.fl-amenities__grid span {
	color: var(--fl-muted);
	font-size: .9rem;
}

.fl-gallery {
	padding: 110px 0 8px;
	background: var(--fl-forest-deep);
	color: #fff;
}

.fl-gallery__head {
	margin-bottom: 62px;
}

.fl-gallery__head h2 {
	max-width: 720px;
}

.fl-gallery__carousel {
	position: relative;
	width: 100%;
	padding-bottom: 48px;
	overflow: hidden;
}

.fl-gallery__slide {
	position: relative;
	display: block;
	height: 430px;
	overflow: hidden;
	background: #0a2118;
	cursor: zoom-in;
}

.fl-gallery__slide img {
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.fl-gallery__slide:hover img,
.fl-gallery__slide:focus-visible img {
	transform: scale(1.025);
}

.fl-gallery__zoom {
	position: absolute;
	right: 16px;
	bottom: 16px;
	padding: 8px 12px;
	background: rgba(13, 44, 32, .88);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	line-height: 1;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease;
}

.fl-gallery__slide:hover .fl-gallery__zoom,
.fl-gallery__slide:focus-visible .fl-gallery__zoom {
	opacity: 1;
	transform: translateY(0);
}

.fl-gallery__carousel .swiper-button-prev,
.fl-gallery__carousel .swiper-button-next {
	top: calc(50% - 24px);
	width: 48px;
	height: 48px;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(252, 251, 247, .94);
	color: var(--fl-forest-deep);
	box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
}

.fl-gallery__carousel .swiper-button-prev {
	left: 18px;
}

.fl-gallery__carousel .swiper-button-next {
	right: 18px;
}

.fl-gallery__carousel .swiper-button-prev::after,
.fl-gallery__carousel .swiper-button-next::after {
	font-size: 17px;
	font-weight: 700;
}

.fl-gallery__carousel .swiper-pagination {
	bottom: 12px;
}

.fl-gallery__carousel .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	background: rgba(255, 255, 255, .55);
	opacity: 1;
}

.fl-gallery__carousel .swiper-pagination-bullet-active {
	width: 22px;
	border-radius: 4px;
	background: var(--fl-gold);
}

.fl-gallery__subhead {
	padding: 100px 0 48px;
}

.fl-gallery__subhead h3 {
	max-width: 680px;
	margin: 0;
	color: #fff;
	font-family: "Marcellus", serif;
	font-size: clamp(2rem, 3.4vw, 3.6rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
}

.fl-gallery__carousel--renders .fl-gallery__slide {
	height: 380px;
}

.gslide-description {
	background: var(--fl-paper) !important;
}

.gslide-title {
	color: var(--fl-forest-deep) !important;
	font-family: "DM Sans", sans-serif !important;
	font-size: .95rem !important;
	font-weight: 600 !important;
}

.fl-masterplan {
	background: var(--fl-paper);
}

.fl-masterplan__grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 8vw;
	align-items: center;
}

.fl-masterplan__copy p:not(.fl-kicker) {
	margin: 28px 0 34px !important;
	color: var(--fl-muted);
}

.fl-masterplan__image {
	display: block;
	padding: 22px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(13, 44, 32, .09);
}

.fl-finance {
	padding: 110px 0;
	background: var(--fl-forest);
	color: #fff;
}

.fl-finance__heading {
	display: grid;
	grid-template-columns: .85fr 1.45fr .8fr;
	gap: 48px;
	align-items: end;
}

.fl-finance__heading .fl-kicker {
	align-self: start;
}

.fl-finance__heading > p:last-child {
	color: rgba(255, 255, 255, .68);
}

.fl-finance__grid {
	display: grid;
	margin-top: 72px;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255, 255, 255, .25);
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.fl-finance__grid div {
	padding: 30px 24px 30px 0;
	border-right: 1px solid rgba(255, 255, 255, .25);
}

.fl-finance__grid div:not(:first-child) {
	padding-left: 24px;
}

.fl-finance__grid div:last-child {
	border-right: 0;
}

.fl-finance__grid span,
.fl-finance__grid strong {
	display: block;
}

.fl-finance__grid span {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, .62);
	font-size: .75rem;
	text-transform: uppercase;
}

.fl-finance__grid strong {
	font-family: "Marcellus", serif;
	font-size: clamp(1.5rem, 2.4vw, 2.4rem);
	font-weight: 400;
	line-height: 1.15;
}

.fl-finance__footer {
	display: flex;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
	margin-top: 34px;
}

.fl-finance__footer p {
	max-width: 560px;
	color: rgba(255, 255, 255, .6);
	font-size: .78rem;
}

.fl-contact {
	background: var(--fl-paper);
}

.fl-contact__grid {
	display: grid;
	grid-template-columns: .8fr 1.05fr;
	gap: 10vw;
	align-items: start;
}

.fl-contact__content > p:not(.fl-kicker) {
	margin-top: 28px !important;
	color: var(--fl-muted);
}

.fl-contact__details {
	display: flex;
	margin-top: 40px;
	flex-direction: column;
	gap: 6px;
}

.fl-contact__details a {
	color: var(--fl-forest);
	font-weight: 700;
}

.fl-form {
	padding: 42px;
	background: var(--fl-ivory);
}

.fl-form label {
	display: block;
	margin-bottom: 22px;
	color: var(--fl-forest-deep);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fl-form input[type="text"],
.fl-form input[type="tel"],
.fl-form input[type="email"],
.fl-form textarea {
	display: block;
	width: 100%;
	margin-top: 7px;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid #aeb6ac;
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: var(--fl-ink);
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
}

.fl-form input:focus,
.fl-form textarea:focus {
	border-color: var(--fl-forest);
}

.fl-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.fl-form .fl-form__privacy {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 500;
	line-height: 1.5;
	text-transform: none;
}

.fl-form__privacy input {
	margin-top: 3px;
}

.fl-form__notice {
	margin-bottom: 24px !important;
	padding: 12px 14px;
	font-size: .9rem;
}

.fl-form__notice--success {
	background: #e0eddf;
	color: #245b32;
}

.fl-form__notice--error {
	background: #f5dfd9;
	color: #7a3024;
}

.fl-map {
	height: 520px;
}

.fl-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(.65) contrast(.95);
}

@keyframes fl-hero-in {
	from { opacity: .2; transform: scale(1.05); }
	to { opacity: 1; transform: scale(1.015); }
}

@keyframes fl-content-in {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
	.fl-section {
		padding: 88px 0;
	}

	.fl-hero {
		min-height: 760px;
	}

	.fl-hero__content {
		min-height: 670px;
		padding-top: 90px;
	}

	.fl-hero__facts {
		width: 86vw;
	}

	.fl-intro__grid,
	.fl-masterplan__grid,
	.fl-contact__grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.fl-lifestyle {
		min-height: 600px;
		grid-template-columns: 1.1fr .9fr;
	}

	.fl-lifestyle__copy {
		padding: 52px 34px 20px;
	}

	.fl-heading-row {
		grid-template-columns: 1fr 280px;
		gap: 40px;
	}

	.fl-amenities__grid,
	.fl-finance__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fl-amenities__grid li:nth-child(2),
	.fl-finance__grid div:nth-child(2) {
		border-right: 0;
	}

	.fl-finance__heading {
		grid-template-columns: 1fr 1.5fr;
	}

	.fl-finance__heading > p:last-child {
		grid-column: 2;
	}
}

@media (max-width: 680px) {
	:root {
		--fl-shell: calc(100vw - 36px);
	}

	body.home .joinchat {
		--bottom: 20px;
		--s: 52px;
	}

	.fl-home h1 {
		font-size: 3.25rem;
	}

	.fl-home h2 {
		font-size: 2.35rem;
	}

	.fl-section {
		padding: 72px 0;
	}

	.fl-hero {
		min-height: 780px;
	}

	.fl-hero__media {
		background-position: 58% center;
	}

	.fl-hero__shade {
		background: linear-gradient(90deg, rgba(8, 35, 24, .9), rgba(8, 35, 24, .45));
	}

	.fl-hero__content {
		min-height: 600px;
		justify-content: flex-start;
		padding-top: 100px;
	}

	.fl-hero__intro {
		font-size: 1rem;
	}

	.fl-actions,
	.fl-actions .fl-button {
		width: 100%;
	}

	.fl-hero__facts {
		width: 100%;
		grid-template-columns: repeat(3, 1fr);
	}

	.fl-hero__facts div {
		padding: 20px 12px;
	}

	.fl-hero__facts strong {
		font-size: 1.25rem;
	}

	.fl-hero__facts span {
		font-size: .66rem;
		line-height: 1.3;
	}

	.fl-intro__grid,
	.fl-heading-row,
	.fl-finance__heading,
	.fl-contact__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.fl-lifestyle {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.fl-lifestyle__scene {
		height: auto;
		aspect-ratio: 1280 / 803;
	}

	.fl-lifestyle__scene img {
		height: 100%;
	}

	.fl-lifestyle__copy {
		padding: 60px 18px 20px;
	}

	.fl-lifestyle__story > img {
		width: min(400px, 92%);
		margin: 0 auto -3% -4%;
	}

	.fl-visual {
		height: auto;
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.fl-visual figure {
		height: 360px;
	}

	.fl-visual__aside {
		display: none;
	}

	.fl-amenities__grid,
	.fl-finance__grid {
		grid-template-columns: 1fr;
	}

	.fl-amenities__grid li,
	.fl-amenities__grid li:not(:first-child) {
		min-height: 0;
		padding: 28px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(21, 63, 45, .2);
	}

	.fl-amenities__grid li::before {
		margin-bottom: 22px;
	}

	.fl-gallery {
		padding-top: 72px;
	}

	.fl-gallery__head {
		margin-bottom: 40px;
	}

	.fl-gallery__subhead {
		padding: 72px 0 36px;
	}

	.fl-gallery__slide,
	.fl-gallery__carousel--renders .fl-gallery__slide {
		height: 310px;
	}

	.fl-gallery__zoom {
		opacity: 1;
		transform: none;
	}

	.fl-gallery__carousel .swiper-button-prev,
	.fl-gallery__carousel .swiper-button-next {
		display: none;
	}

	.fl-finance__heading > p:last-child {
		grid-column: auto;
	}

	.fl-finance__grid div,
	.fl-finance__grid div:not(:first-child) {
		padding: 24px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .18);
	}

	.fl-finance__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.fl-form {
		padding: 28px 20px;
	}

	.fl-form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.fl-form .fl-button {
		width: 100%;
	}

	.fl-map {
		height: 420px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fl-hero__media,
	.fl-hero__content {
		animation: none;
	}
}