@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500&display=swap');

/* Tailwind base styles override for font preservation */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif !important;
	letter-spacing: 0.02em;
}

p, span, div, a {
	font-family: 'Playfair Display', serif !important;
	font-weight: 100 !important;
	letter-spacing: 0.02em;
}

html {
	overflow-x: hidden;
	width: 100%;
}

:root {
	--slideshow-duration: 4.5s;
	--slideshow-first-duration: 4s;
	--slideshow-fade: 3.5s;
	--slideshow-count: 5;
}

body{
	width: 100%;
	max-width: 100vw;
	min-height: 100vh;
	background: #1f2029;
	overflow-x: hidden;
	overflow-y: auto;
	font-family: 'Playfair Display', serif;
	font-weight: 100;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}

/* #Navigation Bar
================================================== */
.top-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 1000;
	padding: 50px 20px;
	transition: all 400ms ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-nav.scrolled {
	background: #231f20;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 20px 20px;
}

.nav-logo {
	height: 100px;
	width: auto;
	object-fit: contain;
}

.top-nav ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 1;
	gap: 50px;
	list-style: none;
	margin: 0;
	margin-left: 56px;
	margin-right: 60px;
	padding: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

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

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

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

.top-nav li {
	margin: 0;
	padding: 0;
}

.top-nav a {
	display: inline-block;
	background: transparent;
	text-transform: uppercase;
	font-weight: 500;
	font-style: normal;
	font-size: 10px;
	letter-spacing: 0.3em;
	color: #fff;
	border-radius: 0;
	padding: 12px 24px;
	transition: all 0.7s ease-out;
	background: linear-gradient(270deg, rgba(223,190,106,0.8), rgba(146,111,52,0.8), rgba(34,34,34,0), rgba(34,34,34,0));
	background-position: 1% 50%;
	background-size: 300% 300%;
	text-decoration: none;
	border: 1px solid rgba(223,190,106,0.3);
	position: relative;
	font-family: 'Playfair Display', serif;
}

.top-nav a:hover {
	color: #fff;
	border: 1px solid rgba(223,190,106,0);
	background-position: 99% 50%;
}

.top-nav .nav-logo-link,
.top-nav .nav-logo-link:hover {
	display: inline-block;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	text-decoration: none !important;
	background-image: none !important;
	letter-spacing: normal;
	text-transform: none;
	transition: none;
}

.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 20%, transparent 40%);
	z-index: 2;
	pointer-events: none;
}

.background-slideshow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	overflow: hidden;
}

.desktop-slideshow {
	display: block;
}

.mobile-slideshow {
	display: none;
}

.background-slideshow img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1);
	transition: opacity var(--slideshow-fade) ease;
	will-change: opacity;
}

.background-slideshow img:first-child {
	opacity: 1;
}

.background-slideshow img.is-active {
	opacity: 1;
}

.background-slideshow img.is-zooming {
	animation: slideshowZoom 12s linear forwards;
}

@keyframes slideshowZoom {
	0% { transform: scale(1); }
	100% { transform: scale(1.07); }
}

.text-copy {
	position: fixed;
	top: 57%;
	transform: translateY(-50%);
	left: 7%;
	text-align: left;
	z-index: 10;
	color: #fff;
	width: min(700px, 86vw);
}

.text-copy .english-title {
	font-family: 'Bodoni 72', 'Bodoni MT', 'Playfair Display', serif !important;
	font-size: 48px;
	letter-spacing: 3px;
	font-weight: 300;
	white-space: nowrap;
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-variation-settings: "wght" 300;
	font-variant: small-caps;
	opacity: 0;
	transform: translateX(-34px);
	animation: heroSlideIn 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s forwards;
}

.text-copy .chinese-title {
	font-family: 'Noto Serif SC', 'Noto Sans SC', serif !important;
	font-size: 30px;
	letter-spacing: 1px;
	font-weight: 400 !important;
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
	opacity: 0;
	transform: translateX(-34px);
	animation: heroSlideIn 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s forwards;
}

@keyframes heroSlideIn {
	0% {
		opacity: 0;
		transform: translateX(-34px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.text-copy .english-title,
	.text-copy .chinese-title {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

.hero-buttons {
	margin-top: 28px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	width: 80%;
}

.hero-button {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 13px;
	font-weight: 400 !important;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-button:hover {
	background: rgba(198, 156, 109, 0.35);
	border-color: rgba(198, 156, 109, 0.9);
}

.cta-button {
	display: inline-block;
	background: #C69C6D;
	color: #fff;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	border: none;
	text-decoration: none;
	font-family: inherit !important;
	font-weight: 600 !important;
	font-size: 1rem;
	letter-spacing: normal;
	text-transform: none;
	line-height: 1.5;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.cta-button:hover {
	opacity: 0.9;
}

/* Motto styling */
.motto {
	font-family: 'Bodoni 72', 'Bodoni MT', 'Playfair Display', serif !important;
	font-style: italic;
	font-weight: 500 !important;
	font-size: 1.62em;
	letter-spacing: 0.04em;
	color: #B28551;
}

/* #Scroll Indicator
================================================== */
.scroll-indicator {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	cursor: pointer;
	transition: all 300ms ease;
}

.scroll-indicator:hover {
	opacity: 0.7;
}

.scroll-text {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 3px;
	font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
}

.scroll-arrow {
	color: #fff;
	font-size: 24px;
	transform: rotate(90deg);
	display: block;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: rotate(90deg) translateY(0);
	}
	40% {
		transform: rotate(90deg) translateY(-10px);
	}
	60% {
		transform: rotate(90deg) translateY(-5px);
	}
}

/* #Content Sections
================================================== */
.content-sections {
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100%;
	background: #F1F1F1;
	z-index: 10;
}

/* Services layout */
.services-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
	gap: 5%;
	align-items: stretch;
}

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

.services-grid-mobile {
	display: none;
}

.services-mobile-cta {
	grid-column: 1 / -1;
	text-align: center;
	justify-self: center;
}

.service-card {
	height: 100%;
}

.service-card h3 {
	font-size: 1.4rem;
}

.service-card p {
	font-size: 0.95rem;
}

.services-image {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	min-height: 280px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	justify-self: end;
}

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

/* Past Transactions layout */
.transactions-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 5%;
	align-items: center;
}

.transactions-image {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	min-height: 320px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

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

.transactions-stats {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	padding-left: 0;
}

.transactions-stat {
	font-family: 'Bodoni 72', 'Bodoni MT', 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	color: #B28551;
	margin: 0;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	white-space: nowrap;
}

.transactions-stat.reveal-ready {
	opacity: 0;
	transform: translateX(-28px);
	transition: opacity 1.2s ease, transform 1.2s ease;
}

.transactions-stat.reveal-ready.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.transactions-stat-value {
	font-size: 3.6rem;
	font-weight: 600;
	margin-right: 8px;
	color: #C69C6D;
}

.transactions-stat-label {
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	color: #8A8A8A;
}

.transactions-stat.align-right {
	align-self: flex-end;
	text-align: right;
}

.transactions-stat.align-left {
	align-self: flex-start;
	text-align: left;
}

.transactions-stat.indent-0,
.transactions-stat.indent-3,
.transactions-stat.indent-6 {
	align-self: flex-start;
	text-align: left;
}

.transactions-stat.indent-0 {
	margin-left: 4.5rem;
}

.transactions-stat.indent-3 {
	margin-left: 7.5rem;
}

.transactions-stat.indent-6 {
	margin-left: 10.5rem;
}

.transactions-reviews {
	margin-top: 16px;
	width: 100%;
	margin-left: 0;
}

.reviews-carousel {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 6px;
	width: 100%;
}

.reviews-viewport {
	overflow: hidden;
	width: 100%;
}

.reviews-track {
	display: flex;
	gap: 16px;
	transition: transform 0.6s ease;
	will-change: transform;
}

.review-card {
	flex: 0 0 auto;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
	min-height: 190px;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.review-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 2px solid rgba(198, 156, 109, 0.6);
	background: rgba(198, 156, 109, 0.15);
	color: #C69C6D;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.review-name {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.review-date {
	font-size: 0.85rem;
	color: #8A8A8A;
	margin: 4px 0 0;
}

.review-stars {
	color: #C69C6D;
	font-size: 1rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.review-text {
	font-size: 0.98rem;
	line-height: 1.6;
	color: #3A3A3A;
	margin: 0;
}

/* Clamp review text to 5 lines and show ellipsis */
.review-text.clamp-5 {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.review-text.clamp-5::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40%;
	height: 1.6em;
	background: linear-gradient(to right, rgba(255,255,255,0), #fff);
	pointer-events: none;
}

/* Modal for showing full review text */
.review-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	padding: 24px;
}
.review-modal {
	background: #fff;
	width: min(760px, 96%);
	border-radius: 12px;
	padding: 20px 24px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.28);
	max-height: 80vh;
	overflow: auto;
	position: relative;
}
.review-modal .review-modal-body {
	color: #333;
	line-height: 1.6;
	font-size: 1rem;
}
.review-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	font-size: 22px;
	cursor: pointer;
	color: #666;
}

@media (prefers-reduced-motion: reduce) {
	.review-modal-overlay,
	.review-modal { transition: none !important; }
}

.reviews-carousel-btn {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #fff;
	color: #C69C6D;
	border: 2px solid #C69C6D;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 10px rgba(198, 156, 109, 0.2);
}

.reviews-carousel-btn:hover {
	background: #C69C6D;
	color: #fff;
	box-shadow: 0 4px 14px rgba(198, 156, 109, 0.35);
}

.reviews-carousel-btn i {
	font-size: 22px;
	line-height: 1;
}

/* Market layout */
.market-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 32px;
	align-items: start;
}

.market-image {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	min-height: 320px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

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

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

.contact-footer-layout {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
}

.contact-footer-contact {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	flex: 1;
	min-width: 0;
}

.contact-footer-legal {
	flex: 0 0 40%;
	max-width: 560px;
	margin-left: auto;
	text-align: left;
}

.site-footer-line {
	margin: 0 0 8px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: none;
}

.site-footer-links {
	margin-top: 16px;
	display: flex;
	justify-content: flex-start;
	gap: 22px;
	flex-wrap: wrap;
}

.site-footer-links a {
	color: #fff;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 2px;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.site-footer-links a:hover {
	color: #C69C6D;
	border-color: #C69C6D;
}


/* Responsive */

@media (max-width: 768px) {
	
	/* Mobile background slideshow */
	.desktop-slideshow {
		display: none;
	}
	
	.mobile-slideshow {
		display: block;
	}

	/* Prevent fixed hero layers from showing on overscroll */
	.background-slideshow,
	.video-overlay,
	.text-copy,
	.scroll-indicator {
		position: absolute;
	}
	
	.text-copy {
		width: min(88vw, 430px);
	}

	/* Mobile Hero Text Styles */
	.text-copy .english-title {
		font-size: 30px;
		letter-spacing: 1.2px;
		line-height: 1.2;
		max-width: 18ch;
		white-space: normal;
		text-wrap: balance;
	}
	
	.text-copy .chinese-title {
		font-size: 24px;
		letter-spacing: 2px;
		font-family: 'Noto Serif SC', 'Noto Sans SC', serif !important;
		font-weight: 400 !important;
	}

	.hero-buttons {
		margin-top: 18px;
		gap: 10px;
	}

	.hero-button {
		font-size: 11px;
		padding: 10px 8px;
		letter-spacing: 0.1em;
	}
	
	/* Mobile Navigation Styles */
	.mobile-menu-toggle {
		display: flex;
		margin-right: 0;
	}
	
	.top-nav {
		padding: 20px 20px;
		box-sizing: border-box;
	}
	
	.top-nav.scrolled {
		padding: 15px 20px;
	}
	
	.nav-logo {
		height: 45px;
	}
	
	.top-nav .nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: rgba(42, 42, 42, 0.98);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 100px;
		padding-left: 0;
		padding-right: 0;
		gap: 18px;
		margin: 0;
		transition: right 0.4s ease;
		box-shadow: -5px 0 15px rgba(0,0,0,0.3);
	}

	.top-nav .nav-menu:not(.active) {
		transition-delay: 0.2s;
	}
	
	.top-nav .nav-menu.active {
		right: 0;
	}
	
	.top-nav li {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.top-nav a {
		font-size: 12px;
		letter-spacing: 0.22em;
		display: block;
		padding: 8px 0;
		width: 220px;
		max-width: 100%;
		box-sizing: border-box;
		text-align: center;
	}

	.contact-footer-layout {
		flex-direction: column;
		gap: 22px;
	}

	.contact-footer-contact {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
	}

	.contact-footer-contact > div:last-child {
		margin-left: 28px;
	}

	.contact-footer-legal {
		max-width: none;
		text-align: center;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 14px;
	}

	.site-footer-line {
		font-size: 11px;
		letter-spacing: 0.06em;
		text-align: center;
	}

	.site-footer-links {
		justify-content: center;
		gap: 14px;
	}

	.services-grid-mobile .service-card h3 {
		color: #C69C6D;
	}

	.site-footer-links a {
		font-size: 10px;
		letter-spacing: 0.1em;
	}

	.services-layout {
		display: flex;
		flex-direction: column;
		gap: 22px;
	}

	.services-grid-desktop {
		display: none;
	}

	.services-grid-mobile {
		display: grid;
	}

	.services-grid {
		gap: 14px;
	}

	.services-image {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
		order: -1;
	}

	.services-grid {
		order: 1;
	}

	.market-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.market-image {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}

	.transactions-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.transactions-image {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}

	.transactions-stats {
		align-items: center;
		text-align: center;
	}

	.transactions-stat-value {
		font-size: 2.8rem;
	}

	.transactions-stat {
		font-size: 1.2rem;
		gap: 6px;
	}

	.transactions-stat-label {
		font-size: 0.95rem;
	}

	.reviews-carousel {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 10px;
	}

	.reviews-carousel-btn {
		width: 40px;
		height: 40px;
	}
	.transactions-stat.indent-0 {
		margin-left: 1.5rem;
	}

	.transactions-stat.indent-3 {
		margin-left: 3rem;
	}

	.transactions-stat.indent-6 {
		margin-left: 4.5rem;
	}
}

@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-card {
		padding: 16px;
	}

	.service-card h3 {
		font-size: 1.1rem;
	}
}

/* #Featured Listings Carousel
================================================== */
.listings-carousel-wrapper {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
}

.listings-carousel {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.listings-track {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	width: max-content;
	max-width: none;
	transition: transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.listings-track .listing-card {
	flex: 0 0 auto;
	width: calc((100% - 2rem * 3) / 4);
	min-width: 0;
	box-sizing: border-box;
}

.listing-media {
	position: relative;
}

.listing-status {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(26, 26, 26, 0.78);
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.listing-status.in-escrow {
	background: rgba(35, 31, 32, 0.45);
	color: #fff;
}

.listing-status.sold {
	background: rgba(35, 31, 32, 0.85);
	color: #fff;
}

.listing-address {
	min-height: 2.8em;
	display: block;
	line-height: 1.4;
}

.listings-carousel-btn {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #fff;
	color: #C69C6D;
	border: 2px solid #C69C6D;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 12px rgba(198, 156, 109, 0.2);
}

.listings-carousel-btn:hover:not(:disabled) {
	background: #C69C6D;
	color: #fff;
	box-shadow: 0 4px 16px rgba(198, 156, 109, 0.35);
}

.listings-carousel-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	border-color: rgba(198, 156, 109, 0.5);
	color: rgba(198, 156, 109, 0.6);
}

.listings-carousel-btn i {
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

@media (max-width: 768px) {
	.listings-carousel-wrapper {
		gap: 0.75rem;
	}

	.listings-track .listing-card {
		width: 100%;
	}

	.listings-carousel-btn {
		width: 44px;
		height: 44px;
	}

	.listings-carousel-btn i {
		font-size: 22px;
	}
}

.listing-card-stats {
	font-family: 'Playfair Display', serif;
}

/* All listings page: solid nav, content below nav */
.all-listings-page .top-nav,
.all-properties-page .top-nav {
	background: #231f20;
	padding: 20px 30px;
}

.all-listings-page-content,
.all-properties-page-content {
	padding-top: 140px;
}

.all-listings-page-content.legal-page-content {
	padding-top: 180px !important;
}

.our-services-page .all-listings-page-content {
	padding-top: 190px;
}

.back-link {
	font-family: 'Playfair Display', serif;
	color: #2E2E2E;
	text-decoration: none;
	font-size: 1rem;
}

.back-link:hover {
	color: #C69C6D;
}

.service-detail-link {
	display: inline-block;
	font-family: 'Playfair Display', serif;
	color: #2E2E2E;
	text-decoration: none;
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.service-detail-link:hover {
	color: #C69C6D;
}

/* Our services page layout and interaction */
.our-services-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: 2rem;
	align-items: start;
}

.our-services-intro {
	position: sticky;
	top: 140px;
	padding: 1rem 0.5rem 1rem 0;
}

.our-services-intro h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 0.95;
	letter-spacing: 0.08em;
	font-weight: 600;
	color: #2E2E2E;
	margin: 0;
}

.our-services-intro-line {
	width: 88px;
	height: 4px;
	background: #C69C6D;
	margin: 1.5rem 0 1.25rem;
}

.our-services-intro p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #5e5e5e;
	max-width: 22rem;
}

.our-services-sections {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.our-service-box {
	background: #fff;
	border: 1px solid rgba(198, 156, 109, 0.35);
	border-radius: 14px;
	padding: 1.8rem;
	scroll-margin-top: 130px;
	transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.our-service-box h2 {
	font-size: 1.75rem;
	margin: 0 0 0.8rem;
	color: #2E2E2E;
	transition: color 0.28s ease, letter-spacing 0.28s ease;
}

.our-service-box p {
	font-size: 1rem;
	line-height: 1.75;
	color: #5e5e5e;
	margin: 0;
}

.our-service-box:hover {
	background: #f7f0e8;
	border-color: #C69C6D;
	box-shadow: 0 16px 36px rgba(46, 46, 46, 0.12);
	transform: translateY(-5px);
}

.our-service-box:hover h2 {
	color: #9f7346;
	letter-spacing: 0.03em;
}

@media (max-width: 768px) {
	.all-listings-page .top-nav,
	.all-properties-page .top-nav {
		padding: 15px 20px;
	}
	.all-listings-page-content,
	.all-properties-page-content {
		padding-top: 75px;
	}

	.all-listings-page-content.legal-page-content {
		padding-top: 110px !important;
	}

	.our-services-page .all-listings-page-content {
		padding-top: 105px;
	}

	.our-services-layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.our-services-intro {
		position: static;
		padding: 0;
	}

	.our-services-intro h1 {
		font-size: clamp(2.3rem, 12vw, 3.3rem);
	}

	.our-services-intro p {
		max-width: none;
		font-size: 1rem;
	}

	.our-service-box {
		padding: 1.25rem;
		scroll-margin-top: 85px;
	}

	.our-service-box h2 {
		font-size: 1.35rem;
	}
}

input, textarea {
    font-family:
        'Playfair Display', 'SimSun', 'Songti SC', 'STSong', serif !important;
    font-weight: 400 !important;
}
