@charset "UTF-8";
/*
 * Main SCSS file
 * Import all components and utilities
 */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

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

button {
	cursor: pointer;
}

ul,
ol {
	list-style: none;
}

body {
	font-family: "Signika Negative", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #46413c;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Fraunces", serif;
	line-height: 1.2;
	font-weight: 600;
	color: #46413c;
	margin-bottom: 24px;
}

h1,
.h1 {
	font-size: 56px;
}

@media (max-width: 575px) {
	h1,
	.h1 {
		font-size: 42px;
	}
}

h2,
.h2 {
	font-size: 42px;
}

@media (max-width: 575px) {
	h2,
	.h2 {
		font-size: 32px;
	}
}

h3,
.h3 {
	font-size: 32px;
}

@media (max-width: 575px) {
	h3,
	.h3 {
		font-size: 24px;
	}
}

h4,
.h4 {
	font-size: 24px;
}

h5,
.h5 {
	font-size: 20px;
}

h6,
.h6 {
	font-size: 18px;
}

p {
	margin-bottom: 16px;
}

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

a {
	color: #7d8c4b;
	transition: color 0.3s ease ease;
}

a:hover {
	color: #5f6b39;
}

strong,
b {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

.text-small {
	font-size: 14px;
}

.text-large {
	font-size: 18px;
}

.text-center {
	text-align: center;
}

.text-primary {
	color: #7d8c4b;
}

.text-gray {
	color: #46413c;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1;
}

.border-bottom-gray {
	border-bottom: 1px solid #c5c1bc;
}

.bg-accent {
	background-color: #fffef6a3;
}

.bg-white {
	background-color: #ffffff;
}

.bg-primary {
	background-color: #7d8c4b;
}

.section {
	padding: 96px 0;
}

@media (max-width: 575px) {
	.section {
		padding: 64px 0;
	}
}

.section-sm {
	padding: 64px 0;
}

@media (max-width: 575px) {
	.section-sm {
		padding: 40px 0;
	}
}

.hidden {
	display: none !important;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.btn, .contact-form-inner .wpcf7-submit {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	outline: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	font-family: "Signika Negative", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	border-radius: 32px;
	transition: all 0.3s ease ease;
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none;
}

.btn:disabled, .contact-form-inner .wpcf7-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-primary {
	background-color: #7d8c4b;
	color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
	background-color: #5f6b39;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary:active:not(:disabled) {
	transform: translateY(0);
}

.btn-secondary, .contact-form-inner .wpcf7-submit {
	background-color: transparent;
	color: #7d8c4b;
	border-color: #7d8c4b;
}

.btn-secondary:hover:not(:disabled), .contact-form-inner .wpcf7-submit:hover:not(:disabled) {
	background-color: #7d8c4b;
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-secondary:active:not(:disabled), .contact-form-inner .wpcf7-submit:active:not(:disabled) {
	transform: translateY(0);
}

.btn-white {
	background-color: #ffffff;
	color: #46413c;
}

.btn-white:hover:not(:disabled) {
	background-color: #f4f4e1;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-sm {
	padding: 8px 24px;
	font-size: 14px;
}

.btn-lg {
	padding: 24px 64px;
	font-size: 18px;
}

.btn-icon {
	gap: 8px;
}

.btn-icon svg {
	width: 20px;
	height: 20px;
}

.btn-block {
	display: flex;
	width: 100%;
}

.form-field {
	margin-bottom: 24px;
}

.form-field label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	color: #46413c;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field input[type="date"],
.form-field input[type="number"],
.form-field textarea,
.form-field select {
	appearance: none;
	border: none;
	background: none;
	outline: none;
	font: inherit;
	color: inherit;
	width: 100%;
	padding: 16px 24px;
	border: 2px solid #c5c1bc;
	border-radius: 16px;
	font-size: 16px;
	color: #46413c;
	transition: border-color 0.3s ease ease;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus,
.form-field input[type="url"]:focus,
.form-field input[type="date"]:focus,
.form-field input[type="number"]:focus,
.form-field textarea:focus,
.form-field select:focus {
	border-color: #7d8c4b;
	outline: none;
}

.form-field input[type="text"]::placeholder,
.form-field input[type="email"]::placeholder,
.form-field input[type="tel"]::placeholder,
.form-field input[type="url"]::placeholder,
.form-field input[type="date"]::placeholder,
.form-field input[type="number"]::placeholder,
.form-field textarea::placeholder,
.form-field select::placeholder {
	color: #968e85;
}

.form-field textarea {
	min-height: 120px;
	resize: vertical;
}

.form-field select {
	cursor: pointer;
	background-color: #ffffff;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	appearance: none !important;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield !important;
	appearance: textfield !important;
}

/* Edge / IE */
input[type="number"]::-ms-clear,
input[type="number"]::-ms-expand {
	display: none !important;
	width: 0;
	height: 0;
}

.custom-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	position: relative;
	user-select: none;
}

.custom-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom-checkbox .checkbox-mark {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #aea7a0;
	border-radius: 6px;
	background-color: #ffffff;
	transition: all 0.3s ease ease;
	flex-shrink: 0;
}

.custom-checkbox .checkbox-mark::after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.custom-checkbox .checkbox-label {
	font-size: 16px;
	color: #46413c;
	font-weight: 400;
	transition: color 0.3s ease ease;
}

.custom-checkbox:hover .checkbox-mark {
	border-color: #7d8c4b;
}

.custom-checkbox:hover .checkbox-label {
	color: #7d8c4b;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-mark {
	background-color: #7d8c4b;
	border-color: #7d8c4b;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-mark::after {
	display: block;
}

.custom-checkbox input[type="checkbox"]:focus ~ .checkbox-mark {
	box-shadow: 0 0 0 3px rgba(125, 140, 75, 0.2);
}

.custom-checkbox input[type="checkbox"]:disabled ~ .checkbox-mark {
	opacity: 0.5;
	cursor: not-allowed;
}

.custom-checkbox input[type="checkbox"]:disabled ~ .checkbox-label {
	opacity: 0.5;
	cursor: not-allowed;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.form-checkbox,
.form-radio {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.form-checkbox input,
.form-radio input {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.form-checkbox label,
.form-radio label {
	margin: 0;
	cursor: pointer;
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: 14px;
	color: #d32f2f;
	margin-top: 8px;
}

.wpcf7 .wpcf7-response-output {
	border-radius: 16px;
	padding: 24px;
	margin: 24px 0 0;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
	background-color: rgba(76, 175, 80, 0.1);
	border: 2px solid #4caf50;
	color: #2e7d32;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
	background-color: rgba(244, 67, 54, 0.1);
	border: 2px solid #f44336;
	color: #c62828;
}

.wpcf7 .wpcf7-response-output.wpcf7-spam-blocked {
	background-color: rgba(255, 152, 0, 0.1);
	border: 2px solid #ff9800;
	color: #e65100;
}

.wpcf7 .ajax-loader {
	display: inline-block;
	margin-left: 16px;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
	border-color: #d32f2f;
}

.form-field.has-success input,
.form-field.has-success textarea,
.form-field.has-success select {
	border-color: #4caf50;
}

.error-message {
	font-size: 14px;
	color: #d32f2f;
	margin-top: 8px;
}

.custom-slider {
	position: relative;
	padding-bottom: 64px;
}

.custom-slider .swiper {
	overflow: visible;
}

@media (max-width: 575px) {
	.custom-slider .swiper {
		overflow: hidden;
	}
}

.custom-slider .swiper-wrapper {
	align-items: stretch;
}

.custom-slider .swiper-slide {
	height: auto;
}

.slider-navigation .swiper-button-next,
.slider-navigation .swiper-button-prev {
	width: 44px;
	transition: all 0.3s ease ease;
}

.slider-navigation .swiper-button-next.swiper-button-disabled,
.slider-navigation .swiper-button-prev.swiper-button-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.card {
	background-color: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-image {
	position: relative;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease ease;
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	padding: 24px;
}

.card-title {
	font-size: 20px;
	font-family: "Fraunces", serif;
	font-weight: 600;
	margin-bottom: 16px;
	color: #46413c;
}

.card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease ease;
}

.card-title a:hover, .card-title a:focus {
	color: inherit;
	text-decoration: none;
}

.card-title a:hover {
	color: #7d8c4b;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1020;
	transition: all 0.3s ease;
}

.site-header.header-transparent {
	background-color: transparent;
}

.site-header.header-transparent .header-inner {
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

.site-header.header-transparent .site-branding {
	filter: brightness(0) invert(1);
}

.site-header.header-transparent .site-branding img {
	height: 105px;
}

.site-header.header-transparent .site-branding a,
.site-header.header-transparent .main-navigation a {
	color: #ffffff;
}

.site-header.header-transparent .menu-toggle span {
	background-color: #ffffff;
}

.site-header.header-scrolled {
	background-color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header.header-scrolled .header-inner {
	border-bottom-color: #c5c1bc;
}

.site-header.header-scrolled .site-branding a,
.site-header.header-scrolled .main-navigation a {
	color: #46413c;
}

.site-header.header-scrolled .menu-toggle span {
	background-color: #46413c;
}

.header-inner {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease ease;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding a {
	color: inherit;
	text-decoration: none;
	display: block;
	transition: opacity 0.3s ease ease;
}

.site-branding a:hover, .site-branding a:focus {
	color: inherit;
	text-decoration: none;
}

.site-branding a:hover {
	opacity: 0.8;
}

.site-branding img {
	height: 90px;
	width: auto;
	transition-duration: 0.4s;
}

@media (max-width: 575px) {
	.site-branding img {
		height: 40px;
	}
}

@media (max-width: 575px) {
	.main-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: #ffffff;
		padding: 64px 24px;
		transition: right 0.3s ease ease;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
		overflow-y: auto;
	}
	.main-navigation.menu-open {
		right: 0;
	}
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

@media (max-width: 575px) {
	.main-navigation ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
}

.main-navigation a {
	color: inherit;
	text-decoration: none;
	font-family: "Signika Negative", sans-serif;
	font-size: 16px;
	font-weight: 300;
	transition: color 0.3s ease ease;
	padding: 8px 0;
}

.main-navigation a:hover, .main-navigation a:focus {
	color: inherit;
	text-decoration: none;
}

.main-navigation a:hover, .main-navigation a.current-menu-item {
	color: #7d8c4b !important;
}

@media (max-width: 575px) {
	.main-navigation a {
		color: #46413c !important;
		font-size: 18px;
	}
}

.menu-toggle {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	outline: none;
	display: none;
	width: 30px;
	height: 24px;
	flex-direction: column;
	justify-content: space-between;
	z-index: 1050;
}

@media (max-width: 575px) {
	.menu-toggle {
		display: flex;
	}
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #46413c;
	border-radius: 2px;
	transition: all 0.3s ease ease;
}

.menu-toggle.menu-open span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.menu-open span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.menu-open span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
	display: none;
}

@media (max-width: 575px) {
	.menu-overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 1040;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease ease;
	}
	.menu-overlay.menu-open {
		opacity: 1;
		visibility: visible;
	}
}

.site-footer {
	background-color: #fffef6a3;
	padding-top: 96px;
}

@media (max-width: 575px) {
	.site-footer {
		padding-top: 64px;
	}
}

.footer-main {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 64px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 64px;
}

@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 575px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.footer-column.footer-logo-column .footer-logo {
	margin-bottom: 24px;
}

.footer-column.footer-logo-column .footer-logo a {
	color: inherit;
	text-decoration: none;
	display: block;
	transition: opacity 0.3s ease ease;
}

.footer-column.footer-logo-column .footer-logo a:hover, .footer-column.footer-logo-column .footer-logo a:focus {
	color: inherit;
	text-decoration: none;
}

.footer-column.footer-logo-column .footer-logo a:hover {
	opacity: 0.8;
}

.footer-column.footer-logo-column .footer-logo img {
	height: 120px;
	width: auto;
}

.footer-column.footer-logo-column p {
	font-size: 16px;
	color: #615b54;
	line-height: 1.6;
}

.footer-menu-title {
	font-size: 18px;
	font-family: "Fraunces", serif;
	font-weight: 600;
	color: #46413c;
	margin-bottom: 24px;
}

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

.footer-menu li {
	margin-bottom: 16px;
}

.footer-menu li:last-child {
	margin-bottom: 0;
}

.footer-menu a {
	color: inherit;
	text-decoration: none;
	color: #6f675f;
	font-size: 16px;
	transition: color 0.3s ease ease;
}

.footer-menu a:hover, .footer-menu a:focus {
	color: inherit;
	text-decoration: none;
}

.footer-menu a:hover {
	color: #7d8c4b;
}

.footer-bottom {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 24px;
	padding-bottom: 24px;
	border-top: 1px solid #c5c1bc;
	text-align: center;
}

.footer-bottom p {
	font-size: 14px;
	color: #7d746b;
	margin: 0;
}

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 575px) {
	.hero-section {
		min-height: 80vh;
	}
}

.hero-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-media::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.hero-media img,
.hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-media video {
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.hero-title-wrapper {
	margin-bottom: 64px;
	text-align: center;
}

.hero-title-wrapper__secondary {
	font-family: "Signika Negative", sans-serif;
	color: white;
	margin-top: 20px;
	font-size: 30px;
	font-weight: 300;
}

@media (max-width: 575px) {
	.hero-title-wrapper {
		margin-bottom: 40px;
	}
}

.hero-title {
	font-size: 56px;
	font-family: "Fraunces", serif;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.3em;
}

@media (max-width: 575px) {
	.hero-title {
		font-size: 42px;
	}
}

.hero-title-static {
	display: inline-block;
}

.hero-title-rotating {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	min-width: 310px;
	height: 1.4em;
	perspective: 2000px;
	perspective-origin: 50% 50%;
}

@media (max-width: 575px) {
	.hero-title-rotating {
		min-width: 200px;
		height: 1.5em;
	}
}

.hero-title-rotating-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
}

.hero-title-word {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	padding: 0.2em 0.8em;
	background-color: #fffef6a3;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	color: #7d8c4b;
	font-weight: 700;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	transform: rotateX(90deg);
	opacity: 0;
	transition: none;
}

.hero-title-word.active {
	transform: rotateX(0deg);
	opacity: 1;
}

.hero-title-word.hiding {
	transform: rotateX(-90deg);
	opacity: 0;
}

.hero-title-word.coming {
	transform: rotateX(90deg);
	opacity: 0;
}

.hero-title-word.entering {
	transform: rotateX(0deg);
	opacity: 1;
}

.hero-title-rotating.initialized .hero-title-word {
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.hero-title-rotating.initialized .hero-title-word.hiding {
	transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 0.4s ease;
}

.hero-title-rotating.initialized .hero-title-word.entering {
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease 0.2s;
}

.hero-title-word:nth-child(2n) {
	color: #6e7b42;
}

.hero-title-word:nth-child(3n) {
	color: #8c9d54;
}

.hero-title-rotating.initialized .hero-title-word.entering {
	animation: subtle-pulse 0.6s ease-out;
}

@keyframes subtle-pulse {
	0% {
		transform: rotateX(0deg) scale(0.95);
	}
	50% {
		transform: rotateX(0deg) scale(1.02);
	}
	100% {
		transform: rotateX(0deg) scale(1);
	}
}

.property-search-form {
	padding: 40px;
	background-color: #ffffff;
	border-radius: 32px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
	max-width: 900px;
	margin: 0 auto;
	position: absolute;
	bottom: -30px;
}

@media (max-width: 575px) {
	.property-search-form {
		padding: 24px;
	}
}

.search-form-grid {
	display: flex;
	gap: 50px;
	margin-bottom: 0;
	align-items: center;
}

@media (max-width: 768px) {
	.search-form-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 575px) {
	.search-form-grid {
		grid-template-columns: 1fr;
	}
}

.search-form-grid .search-form-field-button {
	margin-left: auto;
}

.search-form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.search-form-field.guests-wrapper {
	width: 80px;
}

.search-form-field.guests-wrapper input {
	text-align: center;
}

.search-form-field label {
	font-size: 14px;
	font-weight: 500;
	color: #46413c;
}

.search-form-field input,
.search-form-field select {
	appearance: none;
	border: none;
	background: none;
	outline: none;
	font: inherit;
	color: inherit;
	padding: 8px 16px;
	border: 1px solid #c5c1bc;
	border-radius: 6px;
	font-size: 16px;
	color: #46413c;
	background-color: #ffffff;
	transition: border-color 0.3s ease ease;
}

.search-form-field input:focus,
.search-form-field select:focus {
	border-color: #7d8c4b;
	outline: none;
}

.search-form-field input::placeholder,
.search-form-field select::placeholder {
	color: #968e85;
}

.search-form-field select {
	cursor: pointer;
	background-color: #ffffff;
}

.search-form-submit {
	display: flex;
	justify-content: center;
}

@media (max-width: 575px) {
	.search-form-submit .btn, .search-form-submit .contact-form-inner .wpcf7-submit, .contact-form-inner .search-form-submit .wpcf7-submit {
		width: 100%;
	}
}

.filter-info {
	background-color: #fffef6a3;
	padding: 24px;
	border-radius: 16px;
	margin-bottom: 40px;
}

.filter-info h3 {
	font-size: 20px;
	margin-bottom: 16px;
	color: #7d8c4b;
}

.filter-info p {
	font-size: 16px;
	color: #46413c;
	margin: 0;
}

.filter-info .filter-details {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 16px;
}

.filter-info .filter-details span {
	font-weight: 500;
}

.nights-counter {
	position: absolute;
	bottom: 18px;
}

.nights-counter .nights-text {
	font-size: 14px;
	font-weight: 400;
}

.properties-section {
	padding: 96px 0;
	overflow: hidden;
}

@media (max-width: 575px) {
	.properties-section {
		padding: 64px 0;
	}
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-header h2 {
	margin-bottom: 16px;
}

.section-header p {
	font-size: 18px;
	color: #7d746b;
}

.properties-slider {
	position: relative;
	overflow: visible !important;
}

.properties-slider .swiper-slide {
	height: auto;
}

.property-card {
	background-color: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition-duration: 0.2s;
}

.property-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.property-card.unavailable {
	opacity: 0.6;
	pointer-events: none;
}

.property-card.unavailable .property-card-image {
	position: relative;
}

.property-card.unavailable .property-card-image::before {
	content: "Niedostępny w tym terminie";
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	background-color: rgba(70, 65, 60, 0.95);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	z-index: 2;
}

.property-card.unavailable .property-card-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 1;
}

.property-card-image {
	position: relative;
	position: relative;
	overflow: hidden;
	transition-duration: 0.2s;
}

.property-card-image:before {
	content: "";
	display: block;
	padding-top: 75%;
}

.property-card-image > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.property-card-image img {
	transition-duration: 0.2s;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease ease;
}

.property-card:hover .property-card-image img {
	transform: scale(1.05);
}

.property-card-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	background-color: #fffef6a3;
}

.property-card-title {
	font-size: 20px;
	font-family: "Fraunces", serif;
	font-weight: 600;
	margin-bottom: 16px;
	color: #46413c;
}

.property-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease ease;
}

.property-card-title a:hover, .property-card-title a:focus {
	color: inherit;
	text-decoration: none;
}

.property-card-title a:hover {
	color: #7d8c4b;
}

.property-card-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 16px;
}

.property-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6f675f;
	position: relative;
}

.property-feature__desc {
	font-weight: 300;
	margin-top: 15px;
	border-top: solid 1px #00000017;
	padding-top: 14px;
}

.property-feature .feature-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #7d8c4b;
	background-size: contain;
}

.property-feature .feature-icon.surface {
	background-image: url("./assets/images/size.svg");
}

.property-feature .feature-icon.rooms {
	background-image: url("./assets/images/house.svg");
}

.property-feature .feature-icon.bathroom {
	background-image: url("./assets/images/sink.svg");
}

.property-feature .feature-icon.location {
	background-image: url("./assets/images/location.svg");
}

.property-feature .feature-text {
	font-weight: 500;
}

.property-feature:hover .feature-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
	width: 44px !important;
	height: 44px !important;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px !important;
	color: #000000;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: #7d8c4b;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
	color: #ffffff;
}

@media (max-width: 575px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

.swiper-pagination {
	bottom: -40px !important;
}

.swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #aea7a0;
	opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
	background-color: #7d8c4b;
	width: 24px;
	border-radius: 5px;
}

.text-image-block {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding: 96px 0;
}

@media (max-width: 575px) {
	.text-image-block {
		padding: 64px 0;
	}
}

.text-image-inner {
	display: flex;
	gap: 64px;
	align-items: center;
}

@media (max-width: 768px) {
	.text-image-inner {
		gap: 40px;
	}
}

.text-image-inner.layout-reverse .text-image-content {
	order: 2;
}

.text-image-inner.layout-reverse .text-image-media {
	order: 1;
}

@media (max-width: 768px) {
	.text-image-inner.layout-reverse .text-image-content {
		order: 1;
	}
	.text-image-inner.layout-reverse .text-image-media {
		order: 2;
	}
}

.text-image-content {
	width: 60%;
}

.text-image-content h2 {
	margin-bottom: 24px;
}

.text-image-content p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 24px;
	color: #615b54;
}

.text-image-content .btn, .text-image-content .contact-form-inner .wpcf7-submit, .contact-form-inner .text-image-content .wpcf7-submit {
	margin-top: 24px;
}

.text-image-media {
	width: 50%;
	position: relative;
}

.text-image-media img,
.text-image-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	min-height: 400px;
}

@media (max-width: 575px) {
	.text-image-media img,
	.text-image-media video {
		min-height: 300px;
	}
}

.text-image-media video {
	pointer-events: none;
}

.text-image-media .multi-images {
	display: block;
}

.text-image-media .multi-images .multi-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text-image-media .multi-images .multi-img--1 {
	width: 73%;
	position: relative;
	z-index: 10;
	margin-top: -150px;
	margin-left: auto;
	top: 150px;
}

.text-image-media .multi-images .multi-img--2 {
	width: 80%;
	position: relative;
}

.blog-slider {
	padding: 17px !important;
	margin: -17px !important;
}

.blog-slider-section {
	padding: 96px 0;
	background-color: #fffef6a3;
}

@media (max-width: 575px) {
	.blog-slider-section {
		padding: 64px 0;
	}
}

.blog-card {
	background-color: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition-duration: 0.2s;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.blog-card-image {
	position: relative;
	position: relative;
	overflow: hidden;
}

.blog-card-image:before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.blog-card-image > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease ease;
	transition-duration: 0.2s;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.05);
}

.blog-card-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-title {
	font-size: 20px;
	font-family: "Fraunces", serif;
	font-weight: 600;
	margin-bottom: 16px;
}

.blog-card-title a {
	color: inherit;
	text-decoration: none;
	color: #46413c;
	transition: color 0.3s ease ease;
}

.blog-card-title a:hover, .blog-card-title a:focus {
	color: inherit;
	text-decoration: none;
}

.blog-card-title a:hover {
	color: #7d8c4b;
}

.blog-card-excerpt {
	font-size: 16px;
	line-height: 1.6;
	color: #6f675f;
	margin-bottom: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 14px;
	color: #8a8177;
	margin-top: auto;
}

.blog-card-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-form-section {
	padding: 96px 0;
	background-color: #fffef6a3;
}

@media (max-width: 575px) {
	.contact-form-section {
		padding: 64px 0;
	}
}

.contact-form-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
}

@media (max-width: 768px) {
	.contact-form-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.contact-form-inner .wpcf7-form-control-wrap {
	margin-bottom: 16px;
}

.contact-form-inner .wpcf7-form-control-wrap input,
.contact-form-inner .wpcf7-form-control-wrap textarea {
	width: 100%;
	border: solid 1px #f4f4e1;
	padding: 16px;
	border-radius: 8px;
}

.contact-form-inner.no-media {
	grid-template-columns: 1fr;
	max-width: 800px;
	margin: 0 auto;
}

.contact-form-inner.media-right .contact-form-content {
	order: 1;
	z-index: 10;
}

.contact-form-inner.media-right .contact-form-media {
	order: 2;
	margin-left: -50px;
}

.contact-form-inner.media-left .contact-form-content {
	order: 2;
	z-index: 10;
}

.contact-form-inner.media-left .contact-form-media {
	order: 1;
	margin-right: -50px;
}

@media (max-width: 768px) {
	.contact-form-inner.media-left .contact-form-content {
		order: 1;
	}
	.contact-form-inner.media-left .contact-form-media {
		order: 2;
	}
}

.contact-form-content {
	background-color: #ffffff;
	padding: 64px;
	border-radius: 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 575px) {
	.contact-form-content {
		padding: 24px;
	}
}

.contact-form-content h2 {
	margin-bottom: 24px;
}

.contact-form-content p {
	font-size: 18px;
	margin-bottom: 40px;
	color: #615b54;
}

.contact-form-media {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	min-height: 500px;
}

@media (max-width: 768px) {
	.contact-form-media {
		min-height: 400px;
	}
}

@media (max-width: 575px) {
	.contact-form-media {
		min-height: 300px;
	}
}

.contact-form-media img,
.contact-form-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.contact-form-media video {
	pointer-events: none;
}

.feature-tooltip {
	position: absolute;
	bottom: 110%;
	left: 0%;
	padding: 8px 16px;
	background-color: #46413c;
	color: #ffffff;
	font-size: 14px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease ease;
	pointer-events: none;
	z-index: 1070;
}

.feature-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 20px;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #46413c;
}

.gallery-lightbox-block {
	padding: 96px 0;
}

@media (max-width: 575px) {
	.gallery-lightbox-block {
		padding: 64px 0;
	}
}

.gallery-content {
	margin-bottom: 64px;
	text-align: center;
}

.gallery-content h2 {
	margin-bottom: 24px;
}

.gallery-content p {
	font-size: 18px;
	color: #615b54;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 575px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	display: block;
	transition: transform 0.3s ease ease;
	transition-duration: 0.2s;
}

.gallery-item:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.gallery-item > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gallery-item img {
	transition-duration: 0.2s;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease ease;
}

.gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.gallery-item-hidden {
	display: none;
}

.gallery-item-hidden.show {
	display: block;
}

.gallery-expand {
	position: relative;
	margin-top: -80px;
	padding-top: 120px;
	text-align: center;
	z-index: 2;
}

.gallery-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to bottom, transparent 0%, #ffffff 70%);
	pointer-events: none;
}

.gallery-expand-btn {
	position: relative;
	z-index: 3;
}

.reservation-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1050;
	display: none;
}

.reservation-modal.active {
	display: block;
}

.reservation-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.reservation-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	background-color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

@media (max-width: 575px) {
	.reservation-modal-content {
		width: 95%;
		max-height: 95vh;
	}
}

.reservation-modal-close {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	outline: none;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fffef6a3;
	color: #46413c;
	transition: all 0.3s ease ease;
	z-index: 10;
}

.reservation-modal-close:hover {
	background-color: #46413c;
	color: #ffffff;
}

.reservation-form-wrapper {
	padding: 64px;
}

@media (max-width: 575px) {
	.reservation-form-wrapper {
		padding: 40px;
	}
}

.reservation-form-wrapper h3 {
	margin-bottom: 40px;
	text-align: center;
}

.reservation-form-wrapper .date-range {
	position: relative;
	margin-bottom: 40px;
}

.reservation-form-wrapper .date-range .nights-counter {
	bottom: auto;
}

.reservation-price-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	background-color: #fffef6a3;
	border-radius: 16px;
	margin-bottom: 40px;
}

.reservation-price-info .price-label {
	font-size: 16px;
	color: #7d746b;
}

.reservation-price-info .price-value {
	font-size: 20px;
	font-weight: 700;
	color: #7d8c4b;
}

.reservation-form .form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (max-width: 575px) {
	.reservation-form .form-row {
		grid-template-columns: 1fr;
	}
}

.reservation-form .invoice-fields {
	transition: all 0.3s ease ease;
}

.reservation-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	background-color: #e4e8d4;
	border-radius: 16px;
	margin: 40px 0;
}

.reservation-total .total-label {
	font-size: 18px;
	font-weight: 600;
	color: #46413c;
}

.reservation-total .total-value {
	font-size: 24px;
	font-weight: 700;
	color: #7d8c4b;
}

.reservation-success {
	text-align: center;
	padding: 64px 0;
}

.reservation-success .success-icon {
	margin: 0 auto 40px;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #d9eeda;
}

.reservation-success .success-icon svg {
	color: #4caf50;
}

.reservation-success h3 {
	margin-bottom: 24px;
	color: #4caf50;
}

.reservation-success p {
	margin-bottom: 24px;
	line-height: 1.7;
}

.reservation-success .btn, .reservation-success .contact-form-inner .wpcf7-submit, .contact-form-inner .reservation-success .wpcf7-submit {
	margin-top: 40px;
}

.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container-wide {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container-fluid {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

.grid {
	display: grid;
	gap: 24px;
}

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

@media (max-width: 575px) {
	.grid-2 {
		grid-template-columns: 1fr;
	}
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.grid-3 {
		grid-template-columns: 1fr;
	}
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.grid-4 {
		grid-template-columns: 1fr;
	}
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

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

.m-xs {
	margin: 8px !important;
}

.mt-xs {
	margin-top: 8px !important;
}

.mb-xs {
	margin-bottom: 8px !important;
}

.ml-xs {
	margin-left: 8px !important;
}

.mr-xs {
	margin-right: 8px !important;
}

.mx-xs {
	margin-left: 8px !important;
	margin-right: 8px !important;
}

.my-xs {
	margin-top: 8px !important;
	margin-bottom: 8px !important;
}

.p-xs {
	padding: 8px !important;
}

.pt-xs {
	padding-top: 8px !important;
}

.pb-xs {
	padding-bottom: 8px !important;
}

.pl-xs {
	padding-left: 8px !important;
}

.pr-xs {
	padding-right: 8px !important;
}

.px-xs {
	padding-left: 8px !important;
	padding-right: 8px !important;
}

.py-xs {
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}

.m-sm {
	margin: 16px !important;
}

.mt-sm {
	margin-top: 16px !important;
}

.mb-sm {
	margin-bottom: 16px !important;
}

.ml-sm {
	margin-left: 16px !important;
}

.mr-sm {
	margin-right: 16px !important;
}

.mx-sm {
	margin-left: 16px !important;
	margin-right: 16px !important;
}

.my-sm {
	margin-top: 16px !important;
	margin-bottom: 16px !important;
}

.p-sm {
	padding: 16px !important;
}

.pt-sm {
	padding-top: 16px !important;
}

.pb-sm {
	padding-bottom: 16px !important;
}

.pl-sm {
	padding-left: 16px !important;
}

.pr-sm {
	padding-right: 16px !important;
}

.px-sm {
	padding-left: 16px !important;
	padding-right: 16px !important;
}

.py-sm {
	padding-top: 16px !important;
	padding-bottom: 16px !important;
}

.m-md {
	margin: 24px !important;
}

.mt-md {
	margin-top: 24px !important;
}

.mb-md {
	margin-bottom: 24px !important;
}

.ml-md {
	margin-left: 24px !important;
}

.mr-md {
	margin-right: 24px !important;
}

.mx-md {
	margin-left: 24px !important;
	margin-right: 24px !important;
}

.my-md {
	margin-top: 24px !important;
	margin-bottom: 24px !important;
}

.p-md {
	padding: 24px !important;
}

.pt-md {
	padding-top: 24px !important;
}

.pb-md {
	padding-bottom: 24px !important;
}

.pl-md {
	padding-left: 24px !important;
}

.pr-md {
	padding-right: 24px !important;
}

.px-md {
	padding-left: 24px !important;
	padding-right: 24px !important;
}

.py-md {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
}

.m-lg {
	margin: 40px !important;
}

.mt-lg {
	margin-top: 40px !important;
}

.mb-lg {
	margin-bottom: 40px !important;
}

.ml-lg {
	margin-left: 40px !important;
}

.mr-lg {
	margin-right: 40px !important;
}

.mx-lg {
	margin-left: 40px !important;
	margin-right: 40px !important;
}

.my-lg {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

.p-lg {
	padding: 40px !important;
}

.pt-lg {
	padding-top: 40px !important;
}

.pb-lg {
	padding-bottom: 40px !important;
}

.pl-lg {
	padding-left: 40px !important;
}

.pr-lg {
	padding-right: 40px !important;
}

.px-lg {
	padding-left: 40px !important;
	padding-right: 40px !important;
}

.py-lg {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.m-xl {
	margin: 64px !important;
}

.mt-xl {
	margin-top: 64px !important;
}

.mb-xl {
	margin-bottom: 64px !important;
}

.ml-xl {
	margin-left: 64px !important;
}

.mr-xl {
	margin-right: 64px !important;
}

.mx-xl {
	margin-left: 64px !important;
	margin-right: 64px !important;
}

.my-xl {
	margin-top: 64px !important;
	margin-bottom: 64px !important;
}

.p-xl {
	padding: 64px !important;
}

.pt-xl {
	padding-top: 64px !important;
}

.pb-xl {
	padding-bottom: 64px !important;
}

.pl-xl {
	padding-left: 64px !important;
}

.pr-xl {
	padding-right: 64px !important;
}

.px-xl {
	padding-left: 64px !important;
	padding-right: 64px !important;
}

.py-xl {
	padding-top: 64px !important;
	padding-bottom: 64px !important;
}

.m-xxl {
	margin: 96px !important;
}

.mt-xxl {
	margin-top: 96px !important;
}

.mb-xxl {
	margin-bottom: 96px !important;
}

.ml-xxl {
	margin-left: 96px !important;
}

.mr-xxl {
	margin-right: 96px !important;
}

.mx-xxl {
	margin-left: 96px !important;
	margin-right: 96px !important;
}

.my-xxl {
	margin-top: 96px !important;
	margin-bottom: 96px !important;
}

.p-xxl {
	padding: 96px !important;
}

.pt-xxl {
	padding-top: 96px !important;
}

.pb-xxl {
	padding-bottom: 96px !important;
}

.pl-xxl {
	padding-left: 96px !important;
}

.pr-xxl {
	padding-right: 96px !important;
}

.px-xxl {
	padding-left: 96px !important;
	padding-right: 96px !important;
}

.py-xxl {
	padding-top: 96px !important;
	padding-bottom: 96px !important;
}

.m-auto {
	margin: auto !important;
}

.mx-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}

.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-flex {
	display: flex !important;
}

.w-100 {
	width: 100% !important;
}

.h-100 {
	height: 100% !important;
}

.position-relative {
	position: relative !important;
}

.position-absolute {
	position: absolute !important;
}

@media (max-width: 575px) {
	.d-xs-none {
		display: none !important;
	}
	.d-xs-block {
		display: block !important;
	}
}

@media (max-width: 768px) {
	.d-md-none {
		display: none !important;
	}
	.d-md-block {
		display: block !important;
	}
}

@media (max-width: 992px) {
	.d-lg-none {
		display: none !important;
	}
	.d-lg-block {
		display: block !important;
	}
}

.property-hero {
	position: relative;
	height: 70vh;
	min-height: 500px;
	overflow: hidden;
}

@media (max-width: 575px) {
	.property-hero {
		height: 60vh;
		min-height: 400px;
	}
}

.property-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.property-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.property-hero-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.property-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 64px 0;
}

@media (max-width: 575px) {
	.property-hero-overlay {
		padding: 40px 0;
	}
}

.property-hero-info {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 24px;
	max-width: 600px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.property-hero-info__btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 33px;
}

@media (max-width: 575px) {
	.property-hero-info {
		padding: 24px;
	}
}

.property-title {
	font-size: 42px;
	margin-bottom: 24px;
	color: #46413c;
}

@media (max-width: 575px) {
	.property-title {
		font-size: 32px;
	}
}

.property-features-hero {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 25px;
	border-bottom: solid 1px;
	border-bottom-color: rgba(255, 255, 255, 0.2);
	padding-bottom: 25px;
}

@media (max-width: 575px) {
	.property-features-hero {
		grid-template-columns: 1fr;
	}
}

.property-contact-sticky {
	position: sticky;
	top: 80px;
	z-index: 1019;
	background-color: #ffffff;
	border-bottom: 1px solid #c5c1bc;
	padding: 24px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
	.property-contact-sticky {
		top: 70px;
		padding: 16px 0;
	}
}

.contact-sticky-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

@media (max-width: 575px) {
	.contact-sticky-inner {
		flex-direction: column;
		align-items: stretch;
	}
}

.contact-item {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 24px;
	border-radius: 16px;
	transition: background-color 0.3s ease ease;
	background-color: #fffef6a3;
}

.contact-item:hover, .contact-item:focus {
	color: inherit;
	text-decoration: none;
}

.contact-item:hover {
	background-color: #ffffff;
}

.contact-item .contact-icon {
	width: 20px;
	height: 20px;
}

.contact-item .contact-icon.telephone {
	background-image: url("./assets/images/phone.svg");
	background-size: contain;
}

.contact-item .contact-icon.email {
	background-image: url("./assets/images/email.svg");
	background-size: contain;
}

.contact-item .contact-text {
	font-weight: 500;
	color: #46413c;
}

@media (max-width: 575px) {
	.contact-item .contact-text {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.contact-item {
		justify-content: flex-start;
	}
}

.property-description {
	padding: 96px 0;
}

@media (max-width: 575px) {
	.property-description {
		padding: 64px 0;
	}
}

.property-description p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 24px;
}

.property-description p:last-child {
	margin-bottom: 0;
}

.property-description h2,
.property-description h3,
.property-description h4 {
	margin-top: 40px;
	margin-bottom: 24px;
}

.property-description ul,
.property-description ol {
	margin: 24px 0;
	padding-left: 40px;
}

.property-description ul li,
.property-description ol li {
	margin-bottom: 16px;
	line-height: 1.7;
}

.container-narrow {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.property-gallery-section {
	padding: 96px 0;
	background-color: #fffef6a3;
}

@media (max-width: 575px) {
	.property-gallery-section {
		padding: 64px 0;
	}
}

.property-gallery-section h2 {
	text-align: center;
	margin-bottom: 64px;
}

.property-faq-section {
	padding: 96px 0;
}

@media (max-width: 575px) {
	.property-faq-section {
		padding: 64px 0;
	}
}

.property-faq-section h2 {
	text-align: center;
	margin-bottom: 64px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq-item {
	background-color: #ffffff;
	border: 2px solid #c5c1bc;
	border-radius: 24px;
	overflow: hidden;
	transition: border-color 0.3s ease ease;
}

.faq-item.active {
	border-color: #7d8c4b;
}

.faq-item.active .faq-question {
	background-color: #e4e8d4;
}

.faq-item.active .faq-icon svg {
	transform: rotate(180deg);
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	padding: 24px;
}

.faq-question {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	outline: none;
	width: 100%;
	padding: 24px;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	transition: background-color 0.3s ease ease;
}

.faq-question:hover {
	background-color: #fffef6a3;
}

.faq-question-text {
	font-size: 18px;
	font-weight: 600;
	color: #46413c;
	font-family: "Fraunces", serif;
}

.faq-icon {
	flex-shrink: 0;
	color: #7d8c4b;
}

.faq-icon svg {
	transition: transform 0.3s ease ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	padding: 0 24px;
}

.faq-answer-content {
	color: #615b54;
	line-height: 1.7;
}

.property-contact-section {
	padding: 96px 0;
	background-color: #fffef6a3;
}

@media (max-width: 575px) {
	.property-contact-section {
		padding: 64px 0;
	}
}

.property-contact-section h2 {
	text-align: center;
	margin-bottom: 16px;
}

.property-contact-section > p {
	text-align: center;
	font-size: 18px;
	color: #615b54;
	margin-bottom: 64px;
}

.smooth-scroll {
	scroll-behavior: smooth;
}

.single-post-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 64px;
	padding: 96px 0;
}

@media (max-width: 992px) {
	.single-post-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 575px) {
	.single-post-layout {
		padding: 64px 0;
	}
}

.single-post-content {
	min-width: 0;
}

.post-featured-image {
	margin-bottom: 64px;
	border-radius: 24px;
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	height: auto;
}

.entry-header {
	margin-bottom: 40px;
}

.entry-header .entry-title {
	font-size: 56px;
	margin-bottom: 24px;
}

@media (max-width: 575px) {
	.entry-header .entry-title {
		font-size: 42px;
	}
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	font-size: 14px;
	color: #7d746b;
	padding-bottom: 24px;
	border-bottom: 2px solid #c5c1bc;
}

.entry-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.entry-meta svg {
	color: #7d8c4b;
}

.entry-meta a {
	color: #7d8c4b;
	transition: color 0.3s ease ease;
}

.entry-meta a:hover {
	color: #5f6b39;
}

.entry-content {
	font-size: 18px;
	line-height: 1.8;
	color: #46413c;
}

.entry-content p {
	margin-bottom: 24px;
}

.entry-content p:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-top: 64px;
	margin-bottom: 24px;
}

.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
	margin-top: 0;
}

.entry-content h2 {
	font-size: 32px;
}

.entry-content h3 {
	font-size: 24px;
}

.entry-content ul,
.entry-content ol {
	margin: 24px 0;
	padding-left: 64px;
}

.entry-content ul li,
.entry-content ol li {
	margin-bottom: 16px;
	line-height: 1.7;
}

.entry-content blockquote {
	margin: 40px 0;
	padding: 24px 40px;
	border-left: 4px solid #7d8c4b;
	background-color: #fffef6a3;
	font-style: italic;
}

.entry-content blockquote p {
	margin-bottom: 0;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 40px 0;
}

.entry-content .wp-block-image {
	margin: 40px 0;
}

.entry-content a {
	color: #7d8c4b;
	text-decoration: underline;
	transition: color 0.3s ease ease;
}

.entry-content a:hover {
	color: #5f6b39;
}

.page-links {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid #c5c1bc;
}

.page-links a {
	display: inline-block;
	padding: 8px 16px;
	margin: 0 8px;
	border: 1px solid #7d8c4b;
	border-radius: 6px;
	color: #7d8c4b;
	transition: all 0.3s ease ease;
}

.page-links a:hover {
	background-color: #7d8c4b;
	color: #ffffff;
}

.page-links .current {
	background-color: #7d8c4b;
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 6px;
}

.entry-footer {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid #c5c1bc;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.post-tags svg {
	color: #7d8c4b;
}

.post-tags .tag {
	display: inline-block;
	padding: 8px 16px;
	background-color: #fffef6a3;
	color: #46413c;
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.3s ease ease;
}

.post-tags .tag:hover {
	background-color: #7d8c4b;
	color: #ffffff;
}

@media (max-width: 992px) {
	.single-post-sidebar {
		order: -1;
	}
}

.sidebar-sticky {
	position: sticky;
	top: 100px;
}

@media (max-width: 992px) {
	.sidebar-sticky {
		position: static;
	}
}

.sidebar-widget {
	background-color: #ffffff;
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
}

.sidebar-widget:last-child {
	margin-bottom: 0;
}

.widget-title {
	font-size: 20px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid #7d8c4b;
}

.widget-text {
	color: #615b54;
	line-height: 1.7;
	margin-bottom: 24px;
}

.sidebar-contact {
	background: linear-gradient(135deg, #e4e8d4 0%, #eaedde 100%);
	border: 2px solid #7d8c4b;
}

.sidebar-contact .widget-title {
	color: #7d8c4b;
}

.sidebar-contact .contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.sidebar-contact .contact-item {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background-color: #ffffff;
	border-radius: 6px;
	transition: all 0.3s ease ease;
}

.sidebar-contact .contact-item:hover, .sidebar-contact .contact-item:focus {
	color: inherit;
	text-decoration: none;
}

.sidebar-contact .contact-item:hover {
	transform: translateX(4px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-contact .contact-item .contact-icon {
	font-size: 20px;
}

.sidebar-contact .contact-item .contact-text {
	font-weight: 500;
	color: #46413c;
}

.recent-posts-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.recent-post-item {
	display: flex;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: 1px solid #c5c1bc;
}

.recent-post-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.recent-post-thumbnail {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
}

.recent-post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease ease;
}

.recent-post-thumbnail:hover img {
	transform: scale(1.1);
}

.recent-post-content {
	flex: 1;
	min-width: 0;
}

.recent-post-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}

.recent-post-title a {
	color: inherit;
	text-decoration: none;
	color: #46413c;
	transition: color 0.3s ease ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	display: block;
}

.recent-post-title a:hover, .recent-post-title a:focus {
	color: inherit;
	text-decoration: none;
}

.recent-post-title a:hover {
	color: #7d8c4b;
}

.recent-post-date {
	font-size: 14px;
	color: #8a8177;
}

/*# sourceMappingURL=main.css.map */