/* Bayt revamp code-rendered pages */

.bayt-revamp-page *,
.bayt-revamp-page *::before,
.bayt-revamp-page *::after {
	box-sizing: border-box;
}

/* NOTE: The hand-written Tailwind utility subset that lived here was removed.
 * The full compiled Tailwind layer (assets/css/tailwind.built.css) is now enqueued
 * on every front-end page and is the single source of utilities. Keeping a partial
 * copy here re-introduced cascade bugs (e.g. .flex-col overriding md:flex-row). */

/* Skip-to-content link: hidden until keyboard-focused. */
.bayt-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: #0f172a;
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
	font-weight: 800;
	text-decoration: none;
}
.bayt-skip-link:focus {
	left: 0;
}

/* Visible keyboard focus for interactive elements (WCAG 2.4.7). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid #9d4300;
	outline-offset: 2px;
}

header.fixed a { text-decoration: none; }
header.fixed svg { flex-shrink: 0; max-width: 1.5rem; max-height: 1.5rem; }
#mobile-menu { top: 72px; }

.bayt-home-hero-title {
	font-size: 38px;
	letter-spacing: 0;
	line-height: 42px;
	max-width: 100%;
}

@media (min-width: 375px) {
	.bayt-home-hero-title {
		font-size: 42px;
		line-height: 46px;
	}
}

@media (min-width: 768px) {
	.bayt-home-hero-title {
		font-size: 72px;
		line-height: 80px;
	}
}

.bayt-revamp-page {
	background: #fcf8fa;
	color: #1b1b1d;
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0;
	overflow-x: hidden;
}

.bayt-revamp-page h1,
.bayt-revamp-page h2,
.bayt-revamp-page h3 {
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	letter-spacing: 0;
	margin: 0;
}

.bayt-main {
	padding-top: 112px;
}

.bayt-wrap {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px;
	width: 100%;
}

.bayt-hero {
	background: linear-gradient(135deg, #fcf8fa 0%, #f6f3f5 58%, #ffdbca 100%);
	border-bottom: 1px solid #c6c6cd;
	padding: 44px 0 56px;
}

.bayt-hero-grid {
	align-items: start;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.bayt-kicker {
	color: #9d4300;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.bayt-hero h1 {
	color: #0f172a;
	font-size: clamp(44px, 7vw, 78px);
	font-weight: 800;
	line-height: 0.98;
	max-width: 900px;
	overflow-wrap: anywhere;
}

.bayt-revamp-core .bayt-hero {
	padding: 36px 0 42px;
}

.bayt-revamp-core .bayt-hero-grid {
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.bayt-revamp-core .bayt-hero h1 {
	font-size: clamp(40px, 5vw, 62px);
	max-width: 760px;
}

.bayt-revamp-core .bayt-lede {
	font-size: 18px;
	line-height: 1.55;
	margin-top: 20px;
}

.bayt-revamp-core .bayt-actions {
	margin-top: 24px;
}

.bayt-lede {
	color: #45464d;
	font-size: 20px;
	line-height: 1.65;
	margin: 28px 0 0;
	max-width: 760px;
	overflow-wrap: anywhere;
}

.bayt-actions,
.bayt-contact-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.bayt-button {
	align-items: center;
	border: 2px solid #0f172a;
	border-radius: 14px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 15px 22px;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bayt-button:hover,
.bayt-button:focus {
	box-shadow: 8px 8px 0 #0f172a;
	transform: translateY(-2px);
}

.bayt-button-primary {
	background: #0f172a;
	color: #ffffff;
}

.bayt-button-secondary {
	background: #ffffff;
	color: #0f172a;
}

.bayt-trust-card,
.bayt-side-panel,
.bayt-empty-state {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: 10px 10px 0 rgba(15, 23, 42, 0.12);
	padding: 28px;
}

.bayt-trust-card strong,
.bayt-side-panel h2,
.bayt-empty-state h3 {
	color: #0f172a;
	display: block;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 26px;
	line-height: 1.15;
	margin: 0 0 18px;
}

.bayt-trust-card ul,
.bayt-side-panel ul {
	color: #45464d;
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bayt-trust-card li,
.bayt-side-panel li {
	border-left: 4px solid #fd761a;
	padding-left: 12px;
}

.bayt-section {
	padding: 84px 0;
}

.bayt-section-muted {
	background: #f6f3f5;
	border-bottom: 1px solid #c6c6cd;
	border-top: 1px solid #c6c6cd;
}

.bayt-card-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Landing-page key-facts highlights grid */
.bayt-highlights-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bayt-highlight-card {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	padding: 22px;
	box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.06);
}

.bayt-highlight-card h3 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 18px;
	line-height: 1.2;
	margin: 0 0 10px;
}

.bayt-highlight-card p {
	color: #45464d;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

.bayt-answer-section {
	padding: 42px 0 0;
}

.bayt-answer-box {
	background: #ffffff;
	border: 2px solid #0f172a;
	border-radius: 8px;
	box-shadow: 8px 8px 0 rgba(157, 67, 0, 0.12);
	display: grid;
	gap: 14px;
	padding: clamp(22px, 4vw, 34px);
}

.bayt-answer-label {
	color: #9d4300;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.bayt-answer-box h2 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: clamp(26px, 3vw, 38px);
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
	max-width: 760px;
	text-wrap: balance;
}

.bayt-answer-box p:last-of-type {
	color: #34363d;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.65;
	margin: 0;
	max-width: 74ch;
	text-wrap: pretty;
}

.bayt-answer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bayt-answer-actions a {
	align-items: center;
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	color: #0f172a;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	min-height: 42px;
	padding: 10px 14px;
	text-decoration: none;
}

.bayt-answer-actions a:hover,
.bayt-answer-actions a:focus {
	background: #ffdbca;
	border-color: #9d4300;
}

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

@media (max-width: 560px) {
	.bayt-highlights-grid {
		grid-template-columns: 1fr;
	}
}

.bayt-info-card {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	padding: 30px;
}

.bayt-guide-section-stack {
	display: grid;
	gap: 22px;
}

.bayt-article-section {
	display: grid;
	gap: 18px;
}

.bayt-article-section h3 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.12;
	margin: 0;
}

.bayt-info-card h2 {
	color: #0f172a;
	font-size: 28px;
	line-height: 1.15;
}

.bayt-info-card p,
.bayt-copy p,
.bayt-section-heading p,
.bayt-empty-state p,
.bayt-contact-panel p,
.bayt-faq p {
	color: #45464d;
	font-size: 17px;
	line-height: 1.7;
	margin: 16px 0 0;
}

.bayt-article-section p {
	margin: 0;
}

.bayt-article-table-wrap {
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	margin-top: 2px;
	max-width: 100%;
	overflow-x: auto;
}

.bayt-article-table {
	background: #ffffff;
	border-collapse: collapse;
	color: #45464d;
	font-size: 15px;
	line-height: 1.55;
	min-width: 720px;
	width: 100%;
}

.bayt-article-table th,
.bayt-article-table td {
	border-bottom: 1px solid #e2dde1;
	padding: 14px 16px;
	text-align: left;
	vertical-align: top;
}

.bayt-article-table th {
	background: #f6f3f5;
	color: #0f172a;
	font-weight: 800;
}

.bayt-article-table tr:last-child td {
	border-bottom: 0;
}

.bayt-article-checklist {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bayt-article-checklist li {
	border-left: 3px solid #fd761a;
	color: #45464d;
	font-size: 16px;
	line-height: 1.6;
	padding-left: 12px;
}

.bayt-two-col,
.bayt-contact-grid {
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) 340px;
}

.bayt-copy h2,
.bayt-section-heading h2,
.bayt-contact-panel h2 {
	color: #0f172a;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.06;
}

.bayt-copy p:first-of-type {
	margin-top: 24px;
}

.bayt-section-heading {
	margin-bottom: 30px;
	max-width: 760px;
}

.bayt-section-heading-left {
	margin-left: 0;
	margin-right: auto;
}

.bayt-listings {
	min-height: 120px;
	overflow-x: hidden;
}

.bayt-listings img,
.bayt-listings .listing-featured-thumb,
.bayt-listings .item-listing-wrap,
.bayt-listings .item-listing,
.bayt-listings .property-listing {
	max-width: 100% !important;
}

.bayt-listings img {
	height: auto !important;
	object-fit: cover;
}

.bayt-listings .listing-featured-thumb {
	display: block;
	overflow: hidden;
}

.bayt-faq-list {
	display: grid;
	gap: 14px;
	max-width: 920px;
}

.bayt-faq-intro {
	color: #45464d;
	font-size: 17px;
	line-height: 1.65;
	margin: 14px 0 0;
	max-width: 760px;
}

.bayt-faq {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.06);
	overflow: hidden;
	padding: 20px 24px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bayt-faq[open] {
	border-color: #0f172a;
	box-shadow: 8px 8px 0 rgba(15, 23, 42, 0.08);
}

.bayt-faq summary {
	align-items: center;
	color: #0f172a;
	cursor: pointer;
	display: flex;
	font-size: 18px;
	font-weight: 800;
	gap: 18px;
	justify-content: space-between;
	line-height: 1.35;
	list-style: none;
}

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

.bayt-faq summary::after {
	align-items: center;
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 999px;
	color: #0f172a;
	content: "+";
	display: inline-flex;
	flex: 0 0 30px;
	font-size: 20px;
	font-weight: 900;
	height: 30px;
	justify-content: center;
	line-height: 1;
	width: 30px;
}

.bayt-faq[open] summary::after {
	background: #0f172a;
	color: #ffffff;
	content: "-";
}

.bayt-faq p {
	margin-top: 14px;
	padding-right: 48px;
}

.bayt-faq-contact-list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 18px;
	padding-right: 48px;
}

.bayt-faq-contact {
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	color: #0f172a;
	display: grid;
	gap: 3px;
	min-height: 58px;
	padding: 12px 14px;
	text-decoration: none;
}

.bayt-faq-contact:hover {
	border-color: #0f172a;
}

.bayt-faq-contact span {
	color: #45464d;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.bayt-faq-contact strong {
	font-size: 15px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.bayt-faq-icon-list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 18px;
	padding-right: 48px;
}

.bayt-faq-icon-link {
	align-items: center;
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	color: #0f172a;
	display: grid;
	gap: 8px;
	min-height: 90px;
	padding: 12px;
	text-align: center;
	text-decoration: none;
}

.bayt-faq-icon-link:hover {
	border-color: #0f172a;
}

.bayt-faq-icon-link span {
	align-items: center;
	background: #ffffff;
	border: 1px solid #ded8dd;
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	height: 40px;
	justify-content: center;
	justify-self: center;
	width: 40px;
}

.bayt-faq-icon-link strong {
	font-size: 13px;
	line-height: 1.25;
}

.bayt-faq-action {
	margin-top: 18px;
	width: fit-content;
}

.bayt-link-section {
	background: #0f172a;
	color: #ffffff;
}

.bayt-link-section .bayt-section-heading h2 {
	color: #ffffff;
}

.bayt-link-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bayt-link-grid a {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	color: #ffffff;
	font-weight: 700;
	padding: 16px;
	text-decoration: none;
}

.bayt-link-grid a:hover,
.bayt-link-grid a:focus {
	background: #fd761a;
	color: #ffffff;
}

.bayt-contact-panel {
	background: #ffdbca;
	box-shadow: 0 0 0 100vmax #ffdbca;
	clip-path: inset(0 -100vmax);
}

.bayt-contact-actions {
	align-items: flex-start;
	flex-direction: column;
	margin-top: 0;
}

.bayt-contact-actions > a:not(.bayt-button) {
	color: #0f172a;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-action-section {
	background: #ffffff;
}

.bayt-action-head {
	align-items: flex-end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 28px;
}

.bayt-action-head h2,
.bayt-repair-grid h2,
.bayt-route-card h3,
.bayt-property-card h3,
.bayt-proof-grid strong {
	color: #0f172a;
}

.bayt-filter-bar {
	align-items: end;
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	margin-bottom: 18px;
	padding: 18px;
}

.bayt-filter-bar label {
	display: grid;
	gap: 8px;
}

.bayt-filter-bar span,
.bayt-results-summary span {
	color: #45464d;
	font-size: 13px;
	font-weight: 800;
}

.bayt-filter-bar select {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	color: #1b1b1d;
	font: inherit;
	min-height: 48px;
	padding: 0 12px;
	width: 100%;
}

.bayt-filter-actions {
	align-items: center;
	display: flex;
	gap: 14px;
}

.bayt-amenity-filters {
	grid-column: 1 / -1;
}

.bayt-amenity-filters summary {
	align-items: center;
	color: #0f172a;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	min-height: 44px;
}

.bayt-amenity-filters fieldset {
	border: 0;
	margin: 4px 0 0;
	padding: 0;
}

.bayt-amenity-filters legend {
	color: #45464d;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 8px;
}

.bayt-amenity-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bayt-amenity-options label {
	align-items: center;
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	gap: 8px;
	min-height: 44px;
	padding: 8px 12px;
}

.bayt-amenity-options input {
	accent-color: #0f172a;
	height: 18px;
	width: 18px;
}

.bayt-filter-actions .bayt-button {
	min-height: 48px;
	padding: 12px 18px;
	white-space: nowrap;
}

.bayt-filter-actions a,
.bayt-property-actions a:not(.bayt-button) {
	color: #0f172a;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-results-summary {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.bayt-results-summary h2 {
	color: #0f172a;
	font: inherit;
	font-weight: 800;
	margin: 0;
}

.bayt-property-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bayt-property-card,
.bayt-route-card,
.bayt-ticket-panel,
.bayt-urgent-panel,
.bayt-proof-grid > div {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: 8px 8px 0 rgba(15, 23, 42, 0.08);
}

.bayt-property-media {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: #f0edef;
	color: #0f172a;
	display: flex;
	font-weight: 800;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
}

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

.bayt-property-card-body,
.bayt-route-card,
.bayt-ticket-panel,
.bayt-urgent-panel {
	padding: 22px;
}

.bayt-property-card-top,
.bayt-property-actions {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.bayt-property-card-top {
	color: #45464d;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 14px;
}

.bayt-chip {
	background: #ffdbca;
	border-radius: 999px;
	color: #5c2400;
	padding: 6px 10px;
}

.bayt-property-card h3 {
	font-size: 24px;
	line-height: 1.16;
	margin-bottom: 14px;
}

.bayt-property-card h3 a {
	color: inherit;
	text-decoration: none;
}

.bayt-property-facts {
	color: #45464d;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.bayt-property-facts li {
	background: #f6f3f5;
	border-radius: 999px;
	padding: 7px 10px;
}

.bayt-property-actions .bayt-button {
	min-height: 44px;
	padding: 11px 14px;
}

.bayt-repair-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) 360px;
}

.bayt-ticket-panel,
.bayt-urgent-panel {
	margin-top: 24px;
}

.bayt-urgent-panel {
	background: #ffdbca;
	margin-top: 0;
}

.bayt-urgent-panel .bayt-button {
	margin-top: 14px;
	width: 100%;
}

.bayt-urgent-panel ul {
	color: #45464d;
	display: grid;
	gap: 10px;
	margin: 20px 0 0;
	padding-left: 20px;
}

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

.bayt-route-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bayt-route-card h3 {
	font-size: 24px;
	line-height: 1.18;
}

.bayt-route-card p,
.bayt-action-head p,
.bayt-repair-grid p,
.bayt-proof-grid span {
	color: #45464d;
	font-size: 16px;
	line-height: 1.65;
	margin: 12px 0 0;
}

.bayt-route-card .bayt-button {
	margin-top: auto;
}

.bayt-proof-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
}

.bayt-proof-grid > div {
	display: grid;
	gap: 8px;
	padding: 20px;
}

.bayt-proof-grid strong {
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 22px;
}

.bayt-side-panel a {
	color: #0f172a;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-seo-bottom {
	background: #f6f3f5;
	border-top: 1px solid #c6c6cd;
}

.bayt-revamp-lean .bayt-main {
	background: #fcf8fa;
	padding-top: 76px;
}

.bayt-revamp-lean .bayt-section {
	padding: 38px 0;
}

.bayt-compact-header {
	background: #ffffff;
	border-bottom: 0;
	padding: 20px 0 16px;
}

.bayt-compact-header-grid {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.bayt-compact-kicker {
	color: #9d4300;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.bayt-compact-header h1 {
	color: #0f172a;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.12;
	max-width: 760px;
	overflow-wrap: anywhere;
}

.bayt-compact-header p:not(.bayt-compact-kicker) {
	color: #45464d;
	font-size: 15px;
	line-height: 1.45;
	margin: 8px 0 0;
	max-width: 720px;
}

.bayt-compact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
	margin-left: auto;
}

.bayt-compact-actions .bayt-button,
.bayt-filter-actions .bayt-button,
.bayt-contact-route-row .bayt-button,
.bayt-repair-checklist .bayt-button {
	border-radius: 8px;
	min-height: 42px;
	padding: 10px 14px;
}

.bayt-action-head-compact {
	align-items: flex-start;
	margin-bottom: 16px;
}

.bayt-action-head-compact h2,
.bayt-panel-head h2,
.bayt-contact-route-row h3,
.bayt-contact-details h2,
.bayt-repair-checklist h2,
.bayt-next-actions h2 {
	color: #0f172a;
	font-size: 24px;
	line-height: 1.16;
}

.bayt-action-head-compact p,
.bayt-panel-head p,
.bayt-contact-route-row p,
.bayt-repair-checklist p,
.bayt-proof-list span {
	color: #45464d;
	font-size: 15px;
	line-height: 1.5;
	margin: 6px 0 0;
}

.bayt-property-toolbar {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 10px;
}

.bayt-filter-chips,
.bayt-active-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bayt-filter-chips {
	margin-bottom: 12px;
}

.bayt-filter-chip,
.bayt-active-filters a {
	border: 1px solid #c6c6cd;
	border-radius: 999px;
	color: #0f172a;
	font-size: 13px;
	font-weight: 800;
	padding: 7px 10px;
	text-decoration: none;
}

.bayt-filter-chip.is-active {
	background: #0f172a;
	border-color: #0f172a;
	color: #ffffff;
}

.bayt-active-filters {
	margin: 0 0 14px;
}

.bayt-active-filters > span {
	color: #45464d;
	font-size: 13px;
	font-weight: 800;
}

.bayt-active-filters a {
	background: #ffdbca;
	border-color: #fd761a;
	color: #5c2400;
}

.bayt-revamp-lean .bayt-filter-bar {
	background: transparent;
	border: 0;
	border-radius: 0;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr 1fr auto;
	margin: 0;
	padding: 0;
}

.bayt-revamp-lean .bayt-filter-bar label {
	gap: 5px;
}

.bayt-revamp-lean .bayt-filter-bar select {
	min-height: 42px;
}

.bayt-revamp-lean .bayt-action-section,
.bayt-revamp-lean .bayt-property-browser {
	padding-top: 14px;
}

.bayt-property-results-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bayt-property-results-grid .property-card {
	background: #ffffff;
	min-width: 0;
	text-decoration: none;
	width: 100%;
}

.bayt-property-results-grid .property-card.is-lower-priority {
	opacity: 0.72;
}

.bayt-property-results-grid .property-card[hidden] {
	display: none;
}

.bayt-similar-properties {
	margin-top: 32px;
}

.bayt-similar-properties > h2 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	margin: 0 0 18px;
}

.bayt-similarity-reason {
	background: #ffdbca;
	color: #5c2400;
	font-size: 13px;
	font-weight: 800;
	margin: 0;
	padding: 10px 16px;
}

.bayt-no-exact-matches .bayt-button-secondary {
	min-height: 44px;
}

.bayt-filter-empty[hidden],
.bayt-active-filters[hidden] {
	display: none;
}

.bayt-card-media {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: #f0edef;
	color: #0f172a;
	display: flex;
	font-weight: 800;
	justify-content: center;
	overflow: hidden;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.bayt-card-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bayt-card-badges {
	left: 14px;
	position: absolute;
	top: 14px;
}

.bayt-card-body {
	padding: 18px;
}

.bayt-card-title-row {
	display: block;
}

.bayt-card-title-copy {
	min-width: 0;
}

.bayt-card-location-row {
	align-items: baseline;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-top: 8px;
}

.bayt-card-location-row > p {
	min-width: 0;
}

.bayt-card-title-row > div:first-child {
	min-width: 0;
}

.bayt-card-title-row h3 {
	font-size: 22px;
	line-height: 1.14;
	margin: 0 0 4px;
}

.bayt-card-title-row h3 a {
	color: inherit;
	text-decoration: none;
}

.bayt-card-title-row p {
	color: #45464d;
	font-size: 14px;
	margin: 0;
}

.bayt-card-price {
	align-self: baseline;
	flex: 0 0 auto;
	max-width: 170px;
	text-align: right;
}

.bayt-card-price strong {
	color: #0f172a;
	display: block;
	font-size: 14px;
	line-height: 1.15;
	overflow-wrap: anywhere;
	white-space: normal;
}

.bayt-card-price .bayt-price {
	align-items: baseline;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: flex-end;
	white-space: nowrap;
}

.bayt-card-price .bayt-price-suffix,
.property-card .bayt-price-suffix {
	color: #686a72;
	font-size: 0.68em;
	font-weight: 700;
	line-height: 1;
}

.bayt-card-facts {
	border-top: 1px solid #c6c6cd;
	color: #45464d;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin: 16px 0 18px;
	min-height: 48px;
	padding-top: 12px;
}

.bayt-card-facts span {
	font-size: 13px;
	font-weight: 800;
}

.bayt-card-actions {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.bayt-card-actions a {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	min-height: 40px;
	padding: 9px 10px;
	text-decoration: none;
}

.bayt-card-actions a:first-child {
	background: #ffffff;
	border: 2px solid #0f172a;
	color: #0f172a;
}

.bayt-card-actions a:last-child {
	background: #0f172a;
	border: 2px solid #0f172a;
	color: #ffffff;
}

.bayt-viewing-section {
	background: #ffffff;
	border-top: 1px solid #e4e2e4;
}

.bayt-viewing-grid {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
}

.bayt-viewing-grid h2 {
	color: #0f172a;
	font-size: 24px;
	line-height: 1.16;
	margin: 0;
}

.bayt-viewing-grid p {
	color: #45464d;
	font-size: 15px;
	line-height: 1.5;
	margin: 8px 0 0;
}

.bayt-viewing-form {
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 16px;
}

.bayt-viewing-form label {
	display: grid;
	gap: 6px;
}

.bayt-viewing-form label span {
	color: #0f172a;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.bayt-viewing-form input,
.bayt-viewing-form textarea {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	color: #0f172a;
	font: inherit;
	min-height: 42px;
	padding: 10px 12px;
	width: 100%;
}

.bayt-viewing-form textarea {
	resize: vertical;
}

.bayt-viewing-full {
	grid-column: 1 / -1;
}

.bayt-honeypot {
	height: 0;
	left: -9999px;
	opacity: 0;
	position: absolute;
	width: 0;
}

.bayt-viewing-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.bayt-viewing-status {
	font-weight: 800;
	margin: 0;
	min-height: 20px;
}

.bayt-viewing-status.is-success {
	color: #116329;
}

.bayt-viewing-status.is-error {
	color: #9d1c1c;
}

.bayt-enquiry-status.is-success {
	color: #116329;
}

.bayt-enquiry-status.is-error {
	color: #9d1c1c;
}

.bayt-enquiry-logos img,
.bayt-footer-logos img {
	height: auto;
	max-height: 24px;
	max-width: 120px;
	width: auto;
}

.bayt-urgent-strip {
	align-items: center;
	background: #ffdbca;
	border: 1px solid #fd761a;
	border-radius: 8px;
	color: #5c2400;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 16px;
	padding: 12px 14px;
}

.bayt-emergency-callout {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 24px;
}

.bayt-emergency-block {
	border: 2px solid #ba1a1a;
	border-radius: 12px;
	padding: 18px 20px;
}

.bayt-emergency-block-repair {
	background: #ffdad6;
	color: #410002;
}

.bayt-emergency-block-gas {
	background: #fff8e1;
	border-color: #b45309;
	color: #4a2500;
}

.bayt-emergency-block h2 {
	font-size: 20px;
	line-height: 1.2;
	margin: 0 0 8px;
}

.bayt-emergency-block p {
	margin: 0 0 8px;
}

.bayt-emergency-block p:last-child {
	margin-bottom: 0;
}

.bayt-emergency-action a,
.bayt-emergency-block-gas a {
	color: #0f172a;
	font-weight: 900;
	white-space: nowrap;
}

.bayt-emergency-warning {
	color: #ba1a1a;
}

.bayt-emergency-guide,
.bayt-policy-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.bayt-emergency-guide {
	align-items: start;
	margin-top: 24px;
}

.bayt-policy-intro {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	padding: 28px;
}

.bayt-policy-intro h2,
.bayt-policy-card h3 {
	color: #0f172a;
}

.bayt-policy-intro p,
.bayt-policy-card p {
	color: #45464d;
	line-height: 1.7;
}

.bayt-policy-sections {
	display: grid;
	gap: 16px;
}

.bayt-policy-card {
	box-shadow: none;
}

@media (max-width: 720px) {
	.bayt-emergency-callout {
		grid-template-columns: 1fr;
	}

	.bayt-emergency-guide,
	.bayt-policy-layout {
		grid-template-columns: 1fr;
	}
}

.bayt-urgent-strip a {
	color: #0f172a;
	font-weight: 900;
	margin-left: auto;
}

.bayt-repair-grid,
.bayt-contact-layout,
.bayt-about-layout {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.bayt-ticket-panel,
.bayt-repair-checklist,
.bayt-contact-details,
.bayt-next-actions {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: none;
	padding: 20px;
}

.bayt-ticket-panel {
	margin-top: 0;
}

.bayt-repair-checklist ul,
.bayt-contact-details ul,
.bayt-next-actions ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}

.bayt-repair-checklist li,
.bayt-contact-details li,
.bayt-next-actions li,
.bayt-proof-list > div {
	border-left: 3px solid #fd761a;
	padding-left: 12px;
}

.bayt-repair-checklist .bayt-button {
	margin-top: 18px;
	width: 100%;
}

.bayt-contact-route-list,
.bayt-proof-list {
	display: grid;
	gap: 10px;
}

.bayt-contact-route-row {
	align-items: center;
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 16px;
}

.bayt-contact-route-row .bayt-button {
	white-space: nowrap;
}

.bayt-contact-details li {
	display: grid;
	gap: 3px;
}

.bayt-contact-details span {
	color: #45464d;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.bayt-contact-details a,
.bayt-next-actions a {
	color: #0f172a;
	font-weight: 800;
	overflow-wrap: anywhere;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-proof-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bayt-proof-list > div {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	display: grid;
	gap: 5px;
	padding: 14px 16px;
}

.bayt-proof-list strong {
	color: #0f172a;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 19px;
	line-height: 1.18;
}

.bayt-revamp-lean .bayt-seo-bottom {
	background: #f6f3f5;
	padding: 32px 0 40px;
}

.bayt-revamp-lean .bayt-seo-bottom .bayt-two-col {
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 280px;
}

.bayt-revamp-lean .bayt-seo-bottom h2 {
	font-size: 28px;
	line-height: 1.12;
}

.bayt-revamp-lean .bayt-seo-bottom p {
	font-size: 15px;
	line-height: 1.62;
	margin-top: 12px;
}

.bayt-about-hero {
	background: #fcf8fa;
	border-top: 1px solid #ded8dd;
	padding: clamp(40px, 6vw, 76px) 0;
}

.bayt-about-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(30px, 5vw, 64px);
	grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
}

.bayt-about-hero-copy {
	max-width: 610px;
}

.bayt-about-kicker {
	color: #9d4300;
	font-size: 13px;
	font-weight: 800;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.bayt-about-hero h1 {
	color: #0f172a;
	font-size: clamp(42px, 5.5vw, 72px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 0.98;
	margin: 0;
	max-width: 12ch;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.bayt-about-hero-copy > p:not(.bayt-about-kicker) {
	color: #45464d;
	font-size: 16px;
	line-height: 1.72;
	margin: 18px 0 0;
	max-width: 62ch;
	text-wrap: pretty;
}

.bayt-about-hero-copy .bayt-about-lede {
	color: #0f172a;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.52;
	margin-top: 24px;
}

.bayt-about-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 28px;
}

.bayt-about-text-link,
.bayt-about-review-link {
	color: #0f172a;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.bayt-about-hero-media {
	margin: 0;
	min-width: 0;
}

.bayt-about-hero-media img {
	aspect-ratio: 3 / 2;
	border-radius: 12px;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.bayt-about-hero-media figcaption {
	color: #5a5960;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 10px;
}

.bayt-about-values {
	background: #0f172a;
	color: #ffffff;
	padding: clamp(54px, 7vw, 86px) 0;
}

.bayt-about-values-grid {
	align-items: start;
	display: grid;
	gap: clamp(34px, 7vw, 88px);
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.bayt-about-values-intro {
	max-width: 470px;
}

.bayt-about-values h2,
.bayt-about-standards h2,
.bayt-about-next-step h2 {
	font-size: clamp(31px, 4vw, 48px);
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0;
	text-wrap: balance;
}

.bayt-about-values h2 {
	color: #ffffff;
}

.bayt-about-values-intro p {
	color: #d7dce6;
	font-size: 17px;
	line-height: 1.65;
	margin: 18px 0 0;
	max-width: 44ch;
}

.bayt-about-values-list article {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
	padding: 22px 0;
}

.bayt-about-values-list article:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.bayt-about-values-list h3 {
	color: #ffffff;
	font-size: 20px;
	line-height: 1.2;
	margin: 0;
}

.bayt-about-values-list p {
	color: #d7dce6;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.bayt-about-standards {
	background: #ffffff;
	padding: clamp(54px, 7vw, 86px) 0;
}

.bayt-about-standards-grid {
	align-items: start;
	display: grid;
	gap: clamp(36px, 8vw, 104px);
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

.bayt-about-standards h2 {
	color: #0f172a;
}

.bayt-about-standards-copy > p {
	color: #45464d;
	font-size: 16px;
	line-height: 1.7;
	margin: 18px 0 0;
	max-width: 48ch;
}

.bayt-about-review-link {
	display: inline-flex;
	gap: 7px;
	margin-top: 24px;
}

.bayt-about-standards-list {
	border-bottom: 1px solid #c6c6cd;
	border-top: 1px solid #c6c6cd;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bayt-about-standards-list li + li {
	border-top: 1px solid #ded8dd;
}

.bayt-about-standards-list a {
	align-items: center;
	color: inherit;
	display: grid;
	gap: 16px;
	grid-template-columns: 62px minmax(0, 1fr) auto;
	padding: 16px 0;
	text-decoration: none;
}

.bayt-about-standard-logo {
	align-items: center;
	background: #ffffff;
	display: flex;
	height: 54px;
	justify-content: center;
	width: 62px;
}

.bayt-about-standard-logo img {
	display: block;
	max-height: 46px;
	max-width: 58px;
	object-fit: contain;
}

.bayt-about-standards-list strong,
.bayt-about-standards-list small {
	display: block;
}

.bayt-about-standards-list strong {
	color: #0f172a;
	font-size: 16px;
	line-height: 1.3;
}

.bayt-about-standards-list small {
	color: #5a5960;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 3px;
}

.bayt-about-standard-arrow {
	color: #9d4300;
	font-size: 20px;
	font-weight: 800;
	padding-right: 4px;
}

.bayt-about-standards-list a:hover strong,
.bayt-about-standards-list a:focus-visible strong {
	color: #9d4300;
}

.bayt-about-next-step {
	background: #ffdbca;
	border-bottom: 1px solid #fd761a;
	border-top: 1px solid #fd761a;
	padding: clamp(38px, 5vw, 58px) 0;
}

.bayt-about-next-step-inner {
	align-items: center;
	display: flex;
	gap: 32px;
	justify-content: space-between;
}

.bayt-about-next-step h2 {
	color: #0f172a;
	font-size: clamp(29px, 3.5vw, 42px);
}

.bayt-about-next-step p {
	color: #5c2400;
	font-size: 16px;
	line-height: 1.6;
	margin: 10px 0 0;
	max-width: 58ch;
}

.bayt-about-next-actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 12px;
}

.bayt-about-text-link:focus-visible,
.bayt-about-review-link:focus-visible,
.bayt-about-standards-list a:focus-visible {
	outline: 3px solid #fd761a;
	outline-offset: 4px;
}

@media (max-width: 900px) {
	.bayt-about-hero-grid,
	.bayt-about-values-grid,
	.bayt-about-standards-grid {
		grid-template-columns: 1fr;
	}

	.bayt-about-hero-copy,
	.bayt-about-values-intro,
	.bayt-about-standards-copy {
		max-width: 680px;
	}

	.bayt-about-hero h1 {
		max-width: 14ch;
	}

	.bayt-about-next-step-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 620px) {
	.bayt-about-hero {
		padding-top: 34px;
	}

	.bayt-about-hero h1 {
		font-size: clamp(38px, 13vw, 52px);
	}

	.bayt-about-hero-copy .bayt-about-lede {
		font-size: 18px;
	}

	.bayt-about-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bayt-about-actions .bayt-button {
		width: 100%;
	}

	.bayt-about-text-link {
		align-self: flex-start;
	}

	.bayt-about-values-list article {
		gap: 9px;
		grid-template-columns: 1fr;
		padding: 20px 0;
	}

	.bayt-about-standards-list a {
		grid-template-columns: 54px minmax(0, 1fr) auto;
	}

	.bayt-about-standard-logo {
		height: 46px;
		width: 54px;
	}

	.bayt-about-standard-logo img {
		max-height: 40px;
		max-width: 50px;
	}

	.bayt-about-next-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.bayt-about-next-actions .bayt-button {
		width: 100%;
	}
}

.bayt-article-figure {
	aspect-ratio: 3 / 2;
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	overflow: hidden;
}

.bayt-article-figure img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* Gregson-style property detail */
.bayt-property-detail,
.bayt-property-detail *,
.bayt-property-detail *::before,
.bayt-property-detail *::after {
	box-sizing: border-box;
}

.bayt-property-detail {
	background: #fcf8fa;
	color: #1b1b1d;
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}

.bayt-property-detail button,
.bayt-property-detail input,
.bayt-property-detail textarea,
.bayt-property-detail select {
	font: inherit;
}

.bayt-property-detail__wrap {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px;
	width: 100%;
}

.bayt-property-detail__layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
	padding-bottom: 72px;
	padding-top: 34px;
}

.bayt-property-detail__content {
	display: grid;
	gap: 22px;
	min-width: 0;
}

.bayt-property-hero {
	background: #ffffff;
	border-bottom: 1px solid #c6c6cd;
	padding: 42px 0 30px;
}

.bayt-property-breadcrumbs {
	align-items: center;
	color: #686a72;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.4;
	margin-bottom: 26px;
}

.bayt-property-breadcrumbs a {
	color: #0f172a;
	text-decoration: none;
}

.bayt-property-breadcrumbs a:hover,
.bayt-property-breadcrumbs a:focus {
	color: #9d4300;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bayt-property-hero__grid {
	align-items: end;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.bayt-property-hero__copy {
	min-width: 0;
}

.bayt-property-hero__eyebrow,
.bayt-detail-booking-card__eyebrow {
	color: #9d4300;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.bayt-property-hero h1 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-size: 52px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	max-width: 850px;
	overflow-wrap: anywhere;
}

.bayt-property-hero__meta {
	color: #45464d;
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	font-weight: 700;
	gap: 8px 12px;
	line-height: 1.5;
	margin: 16px 0 0;
}

.bayt-property-hero__meta span {
	display: inline-flex;
	min-width: 0;
}

.bayt-property-hero__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.bayt-property-share,
.bayt-property-save,
.bayt-property-gallery__all,
.bayt-property-detail .bayt-gallery-modal__close,
.bayt-property-detail .bayt-gallery-modal__prev,
.bayt-property-detail .bayt-gallery-modal__next,
.bayt-detail-booking-card__actions button,
.bayt-detail-booking-card__actions a {
	align-items: center;
	background: #ffffff;
	border: 1px solid #0f172a;
	border-radius: 8px;
	color: #0f172a;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	padding: 12px 16px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.bayt-property-share:hover,
.bayt-property-share:focus,
.bayt-property-save:hover,
.bayt-property-save:focus,
.bayt-property-gallery__all:hover,
.bayt-property-gallery__all:focus,
.bayt-property-detail .bayt-gallery-modal__close:hover,
.bayt-property-detail .bayt-gallery-modal__close:focus,
.bayt-property-detail .bayt-gallery-modal__prev:hover,
.bayt-property-detail .bayt-gallery-modal__prev:focus,
.bayt-property-detail .bayt-gallery-modal__next:hover,
.bayt-property-detail .bayt-gallery-modal__next:focus {
	background: #0f172a;
	color: #ffffff;
	transform: translateY(-1px);
}

.bayt-property-share:focus-visible,
.bayt-property-save:focus-visible,
.bayt-property-gallery__all:focus-visible,
.bayt-property-gallery__item:focus-visible,
.bayt-property-detail .bayt-gallery-modal__close:focus-visible,
.bayt-property-detail .bayt-gallery-modal__prev:focus-visible,
.bayt-property-detail .bayt-gallery-modal__next:focus-visible,
.bayt-similar-listings__item a:focus-visible,
.bayt-detail-booking-card__actions button:focus-visible,
.bayt-detail-booking-card__actions a:focus-visible {
	outline: 3px solid #fd761a;
	outline-offset: 3px;
}

.bayt-property-save[aria-pressed="true"],
.bayt-property-save.is-saved {
	background: #fff1e8;
	border-color: #fd761a;
	color: #9d4300;
}

.bayt-property-gallery {
	margin: 0 auto;
	max-width: 1240px;
	padding: 18px 24px 0;
	position: relative;
}

.bayt-property-gallery__grid {
	display: grid;
	gap: 8px;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, minmax(150px, 230px));
}

.bayt-property-gallery__item {
	appearance: none;
	background: #ece7ea;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	display: block;
	min-height: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.bayt-property-gallery__item::after {
	background: rgba(15, 23, 42, 0);
	content: "";
	inset: 0;
	position: absolute;
	transition: background 160ms ease;
}

.bayt-property-gallery__item:hover::after,
.bayt-property-gallery__item:focus::after,
.bayt-property-gallery__item.is-selected::after {
	background: rgba(15, 23, 42, 0.14);
}

.bayt-property-gallery__item--1 {
	grid-row: 1 / span 2;
}

.bayt-property-gallery__item img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bayt-property-gallery__all {
	bottom: 18px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
	position: absolute;
	right: 42px;
}

.bayt-property-facts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bayt-property-travel-summary {
	border-bottom: 1px solid var(--bayt-detail-border);
	padding: 0 0 26px;
}

.bayt-property-travel-summary ul {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.bayt-property-travel-summary li {
	min-width: 0;
}

.bayt-property-travel-summary__label {
	color: var(--bayt-detail-muted);
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 4px;
}

.bayt-property-travel-summary__time {
	align-items: baseline;
	color: var(--bayt-detail-text);
	display: flex;
	gap: 5px;
	margin: 0;
}

.bayt-property-travel-summary__time strong {
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}

.bayt-property-travel-summary__time span {
	font-size: 15px;
	font-weight: 800;
}

.bayt-property-travel-summary small,
.bayt-property-travel-summary__fallback {
	color: var(--bayt-detail-muted);
	display: block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	margin-top: 5px;
}

.bayt-property-facts__item,
.bayt-property-description,
.bayt-property-amenities,
.bayt-detail-booking-card,
.bayt-similar-listings__item {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
}

.bayt-property-facts__item {
	display: grid;
	gap: 5px;
	min-height: 86px;
	padding: 16px;
}

.bayt-property-facts__item span {
	color: #686a72;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.bayt-property-facts__item strong {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.bayt-property-description,
.bayt-property-amenities {
	padding: 28px;
}

.bayt-property-description h2,
.bayt-property-amenities h2,
.bayt-similar-listings h2,
.bayt-detail-booking-card h2,
.bayt-property-detail .bayt-gallery-modal__header h2 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
}

.bayt-property-description h2,
.bayt-property-amenities h2 {
	font-size: 30px;
	margin-bottom: 16px;
}

.bayt-property-description__body,
.bayt-property-description p,
.bayt-property-amenities > p,
.bayt-similar-listings > .bayt-property-detail__wrap > p {
	color: #45464d;
	font-size: 16px;
	line-height: 1.72;
	margin: 0;
}

.bayt-property-description__body > * {
	margin-bottom: 16px;
}

.bayt-property-description__body > *:last-child {
	margin-bottom: 0;
}

.bayt-property-amenities__list {
	display: grid;
	gap: 10px 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.bayt-property-amenities__list li {
	align-items: center;
	color: #1b1b1d;
	display: flex;
	font-size: 15px;
	font-weight: 800;
	gap: 10px;
	min-width: 0;
}

.bayt-property-amenities__list li::before {
	background: #fd761a;
	border-radius: 999px;
	content: "";
	flex: 0 0 8px;
	height: 8px;
	width: 8px;
}

.bayt-detail-booking-card {
	padding: 22px;
	position: sticky;
	top: 98px;
}

.bayt-detail-booking-card__summary {
	border-bottom: 1px solid #c6c6cd;
	margin-bottom: 18px;
	padding-bottom: 18px;
}

.bayt-detail-booking-card h2 {
	font-size: 30px;
	overflow-wrap: anywhere;
}

.bayt-detail-booking-card dl {
	display: grid;
	gap: 8px;
	margin: 16px 0 0;
}

.bayt-detail-booking-card dl > div {
	align-items: baseline;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.bayt-detail-booking-card dt,
.bayt-detail-booking-card dd {
	color: #45464d;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.bayt-detail-booking-card dd {
	color: #0f172a;
	font-weight: 900;
	text-align: right;
}

.bayt-detail-booking-card__form {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bayt-detail-booking-card__note,
.bayt-detail-booking-card__actions,
.bayt-detail-booking-card__status {
	grid-column: 1 / -1;
}

.bayt-detail-booking-card__note {
	color: #45464d;
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

.bayt-detail-booking-card .bayt-field {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.bayt-detail-booking-card .bayt-field--full,
.bayt-detail-booking-card .bayt-field--website {
	grid-column: 1 / -1;
}

.bayt-detail-booking-card .bayt-field--website[hidden] {
	display: none;
}

.bayt-detail-booking-card .bayt-field span {
	color: #1b1b1d;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
}

.bayt-detail-booking-card .bayt-field input,
.bayt-detail-booking-card .bayt-field textarea {
	background: #ffffff;
	border: 1px solid #a8a8b0;
	border-radius: 8px;
	color: #0f172a;
	font-size: 15px;
	line-height: 1.35;
	min-height: 44px;
	padding: 11px 12px;
	width: 100%;
}

.bayt-detail-booking-card .bayt-field textarea {
	min-height: 104px;
	resize: vertical;
}

.bayt-detail-booking-card .bayt-field input:focus,
.bayt-detail-booking-card .bayt-field textarea:focus {
	border-color: #9d4300;
	box-shadow: 0 0 0 3px rgba(253, 118, 26, 0.2);
	outline: 0;
}

.bayt-detail-booking-card__actions {
	display: grid;
	gap: 10px;
	margin-top: 2px;
}

.bayt-detail-booking-card__actions button,
.bayt-detail-booking-card__actions a {
	min-width: 0;
	text-align: center;
	width: 100%;
}

.bayt-detail-booking-card__actions button {
	background: #0f172a;
	color: #ffffff;
}

.bayt-detail-booking-card__actions button:hover,
.bayt-detail-booking-card__actions button:focus {
	background: #9d4300;
	border-color: #9d4300;
}

.bayt-detail-booking-card__actions a {
	border-color: #128c7e;
	color: #075e54;
}

.bayt-detail-booking-card__actions a:hover,
.bayt-detail-booking-card__actions a:focus {
	background: #075e54;
	border-color: #075e54;
	color: #ffffff;
}

.bayt-detail-booking-card__status {
	border-radius: 8px;
	color: #45464d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	margin: 0;
	min-height: 20px;
}

.bayt-detail-booking-card__status.is-success {
	background: #e8f5ee;
	color: #17603a;
	padding: 10px 12px;
}

.bayt-detail-booking-card__status.is-error {
	background: #fff1e8;
	color: #9d4300;
	padding: 10px 12px;
}

.bayt-similar-listings {
	background: #f6f3f5;
	border-top: 1px solid #c6c6cd;
	padding: 54px 0 76px;
}

.bayt-similar-listings h2 {
	font-size: 34px;
	margin-bottom: 20px;
}

.bayt-similar-listings__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bayt-similar-listings__item {
	overflow: hidden;
}

.bayt-similar-listings__item a {
	color: inherit;
	display: grid;
	gap: 10px;
	height: 100%;
	padding-bottom: 18px;
	text-decoration: none;
}

.bayt-similar-listings__item img {
	aspect-ratio: 4 / 3;
	background: #ece7ea;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.bayt-similar-listings__item span,
.bayt-similar-listings__item h3,
.bayt-similar-listings__item p {
	margin-left: 18px;
	margin-right: 18px;
}

.bayt-similar-listings__item span {
	color: #9d4300;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
}

.bayt-similar-listings__item h3 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-size: 23px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.bayt-similar-listings__item p {
	color: #45464d;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 0;
}

.bayt-property-detail .bayt-gallery-modal[hidden] {
	display: none;
}

.bayt-property-detail .bayt-gallery-modal {
	align-items: flex-start;
	background: rgba(15, 23, 42, 0.88);
	display: flex;
	inset: 0;
	justify-content: center;
	overflow: auto;
	padding: 24px;
	position: fixed;
	z-index: 10000;
}

.bayt-property-detail .bayt-gallery-modal.is-open {
	display: flex;
}

body.bayt-gallery-open {
	overflow: hidden;
}

.bayt-property-detail .bayt-gallery-modal__dialog {
	background: #ffffff;
	border-radius: 8px;
	display: grid;
	gap: 14px;
	margin: auto 0;
	max-height: calc(100vh - 48px);
	max-width: 1120px;
	overflow: auto;
	padding: 16px;
	width: 100%;
}

.bayt-property-detail .bayt-gallery-modal__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.bayt-property-detail .bayt-gallery-modal__header h2 {
	font-size: 26px;
}

.bayt-property-detail .bayt-gallery-modal__stage {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	min-height: min(360px, calc(100vh - 160px));
}

.bayt-property-detail .bayt-gallery-modal__image {
	aspect-ratio: 16 / 10;
	background: #ece7ea;
	border-radius: 8px;
	display: block;
	height: auto;
	max-height: calc(100vh - 150px);
	object-fit: contain;
	width: 100%;
}

.bayt-property-detail .bayt-gallery-modal__prev,
.bayt-property-detail .bayt-gallery-modal__next {
	aspect-ratio: 1;
	border-radius: 50%;
	font-size: 0;
	min-height: 48px;
	padding: 0;
	position: relative;
	width: 48px;
}

.bayt-property-detail .bayt-gallery-modal__prev::before,
.bayt-property-detail .bayt-gallery-modal__next::before {
	border-color: currentColor;
	border-style: solid;
	border-width: 0 2px 2px 0;
	content: "";
	height: 12px;
	position: absolute;
	top: 50%;
	width: 12px;
}

.bayt-property-detail .bayt-gallery-modal__prev::before {
	left: 19px;
	transform: translateY(-50%) rotate(135deg);
}

.bayt-property-detail .bayt-gallery-modal__next::before {
	right: 19px;
	transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
	.bayt-property-detail__layout {
		grid-template-columns: 1fr;
	}

	.bayt-detail-booking-card {
		position: static;
	}

	.bayt-property-gallery__grid {
		grid-template-rows: repeat(2, minmax(130px, 190px));
	}
}

@media (max-width: 820px) {
	.bayt-property-detail__wrap {
		padding: 0 18px;
	}

	.bayt-property-hero {
		padding-top: 32px;
	}

	.bayt-property-hero__grid {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.bayt-property-hero__actions {
		justify-content: flex-start;
	}

	.bayt-property-hero h1 {
		font-size: 38px;
	}

	.bayt-property-gallery {
		padding-left: 18px;
		padding-right: 18px;
	}

	.bayt-property-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}

	.bayt-property-gallery__item {
		aspect-ratio: 4 / 3;
	}

	.bayt-property-gallery__item--1 {
		aspect-ratio: 16 / 10;
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.bayt-property-facts,
	.bayt-property-amenities__list,
	.bayt-detail-booking-card__form,
	.bayt-similar-listings__grid {
		grid-template-columns: 1fr;
	}

	.bayt-detail-booking-card .bayt-field,
	.bayt-detail-booking-card .bayt-field--full,
	.bayt-detail-booking-card .bayt-field--website {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.bayt-property-detail__layout {
		gap: 20px;
		padding-bottom: 48px;
		padding-top: 24px;
	}

	.bayt-property-hero h1 {
		font-size: 32px;
	}

	.bayt-property-share,
	.bayt-property-save {
		flex: 1 1 130px;
	}

	.bayt-property-gallery__grid {
		gap: 6px;
	}

	.bayt-property-gallery__item:nth-child(n+4) {
		display: none;
	}

	.bayt-property-gallery__all {
		bottom: 12px;
		left: 30px;
		right: 30px;
	}

	.bayt-property-description,
	.bayt-property-amenities,
	.bayt-detail-booking-card {
		padding: 20px;
	}

	.bayt-property-description h2,
	.bayt-property-amenities h2,
	.bayt-detail-booking-card h2 {
		font-size: 26px;
	}

	.bayt-similar-listings {
		padding: 42px 0 56px;
	}

	.bayt-property-detail .bayt-gallery-modal {
		padding: 12px;
	}

	.bayt-property-detail .bayt-gallery-modal__dialog {
		max-height: calc(100vh - 24px);
		padding: 12px;
	}

	.bayt-property-detail .bayt-gallery-modal__stage {
		gap: 10px;
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		min-height: min(260px, calc(100vh - 136px));
	}

	.bayt-property-detail .bayt-gallery-modal__image {
		max-height: calc(100vh - 142px);
	}

	.bayt-property-detail .bayt-gallery-modal__prev,
	.bayt-property-detail .bayt-gallery-modal__next {
		min-height: 42px;
		width: 42px;
	}
}

/* Gregson fidelity pass: preserve the reference layout, tuned to Bayt colors */
.bayt-property-detail {
	--bayt-detail-primary: #a15a24;
	--bayt-detail-primary-dark: #844a1d;
	--bayt-detail-text: #1b1b1d;
	--bayt-detail-muted: #717171;
	--bayt-detail-soft: #f9f9f9;
	--bayt-detail-border: #eeeeee;
	--bayt-detail-green: #0e6f63; /* WhatsApp teal darkened for WCAG AA on the card's light backgrounds */
	background: #ffffff;
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.single-property .property-lightbox,
body.single-property .mobile-property-contact,
body.single-property .mobile-property-form,
body.single-property #compare-property-panel,
body.single-property #login-register-form,
body.single-property #reset-password-form {
	display: none !important;
}

.bayt-property-detail__wrap {
	max-width: 1120px;
	padding: 20px 24px 0;
}

.bayt-property-hero {
	background: transparent;
	border: 0;
	padding: 0 0 20px;
}

.bayt-property-breadcrumbs {
	color: var(--bayt-detail-muted);
	font-size: 14px;
	font-weight: 500;
	gap: 8px;
	margin-bottom: 12px;
}

.bayt-property-breadcrumbs a {
	color: var(--bayt-detail-muted);
}

.bayt-property-breadcrumbs a::after {
	color: var(--bayt-detail-muted);
	content: ">";
	font-size: 12px;
	margin-left: 8px;
}

.bayt-property-breadcrumbs span {
	color: var(--bayt-detail-text);
	font-weight: 600;
}

.bayt-property-breadcrumbs a:hover,
.bayt-property-breadcrumbs a:focus {
	color: var(--bayt-detail-primary);
}

.bayt-property-hero__grid {
	align-items: end;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.bayt-property-hero h1 {
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
	max-width: 820px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-wrap: balance;
}

.bayt-property-hero__label {
	color: var(--bayt-detail-primary);
	font-size: 13px;
	font-weight: 800;
	margin: 14px 0 0;
}

.bayt-property-hero__meta {
	align-items: center;
	color: var(--bayt-detail-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 600;
	gap: 10px 18px;
	margin-top: 9px;
}

.bayt-property-hero__location {
	font-weight: 700;
}

.bayt-property-hero__feature {
	align-items: center;
	display: inline-flex;
	gap: 6px;
}

.bayt-property-hero__feature svg {
	fill: none;
	height: 17px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 17px;
}

.bayt-property-hero__actions {
	gap: 16px;
}

.bayt-property-share,
.bayt-property-save {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: var(--bayt-detail-text);
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	min-height: 40px;
	padding: 8px 10px;
	position: relative;
}

.bayt-property-action__icon {
	align-items: center;
	display: inline-flex;
	flex: 0 0 18px;
	justify-content: center;
}

.bayt-property-action__icon svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 18px;
}

.bayt-property-share:hover,
.bayt-property-share:focus,
.bayt-property-save:hover,
.bayt-property-save:focus {
	background: var(--bayt-detail-soft);
	color: var(--bayt-detail-primary);
	transform: none;
}

.bayt-property-save[aria-pressed="true"],
.bayt-property-save.is-saved {
	background: #fff4ee;
	border: 0;
	color: var(--bayt-detail-primary);
}

.bayt-property-save__status {
	background: var(--bayt-detail-text);
	border-radius: 999px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	left: 50%;
	line-height: 1.2;
	opacity: 0;
	padding: 5px 8px;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 6px);
	transform: translate(-50%, -4px);
	transition: opacity 160ms ease, transform 160ms ease;
	white-space: nowrap;
	z-index: 3;
}

.bayt-property-save.is-saved .bayt-property-save__status {
	opacity: 1;
	transform: translate(-50%, 0);
}

.bayt-property-gallery {
	margin-bottom: 32px;
	max-width: none;
	padding: 0;
}

.bayt-property-gallery__grid {
	border-radius: 12px;
	display: grid;
	gap: 8px;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, 200px);
	overflow: hidden;
}

.bayt-property-gallery__item {
	border-radius: 0;
}

.bayt-property-gallery__item--1 {
	grid-row: 1 / span 2;
}

.bayt-property-gallery__item img {
	transition: opacity 180ms ease, transform 700ms ease;
}

.bayt-property-gallery__item:hover img,
.bayt-property-gallery__item:focus img {
	opacity: 0.9;
}

.bayt-property-gallery__all {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--bayt-detail-text);
	border-radius: 8px;
	bottom: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
	color: var(--bayt-detail-text);
	font-size: 14px;
	font-weight: 700;
	min-height: 36px;
	padding: 8px 16px;
	right: 16px;
}

.bayt-property-gallery__all:hover,
.bayt-property-gallery__all:focus {
	background: #ffffff;
	color: var(--bayt-detail-primary);
	transform: none;
}

.bayt-property-detail__layout {
	gap: 48px;
	grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
	margin-bottom: 72px;
	padding: 0;
}

.bayt-property-detail__content {
	display: block;
}

.bayt-property-facts {
	border-bottom: 1px solid var(--bayt-detail-border);
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0 0 24px;
}

.bayt-property-facts__item,
.bayt-property-description,
.bayt-property-amenities,
.bayt-similar-listings__item {
	background: transparent;
	border: 0;
	border-radius: 0;
}

.bayt-property-facts__item {
	min-height: 0;
	padding: 0;
	text-align: left;
}

.bayt-property-facts__item span {
	color: var(--bayt-detail-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.bayt-property-facts__item strong {
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.bayt-property-facts__item:last-child strong {
	color: var(--bayt-detail-green);
}

.bayt-property-description,
.bayt-property-amenities,
.bayt-property-map,
.bayt-property-faqs {
	border-bottom: 1px solid var(--bayt-detail-border);
	padding: 24px 0;
}

.bayt-property-description h2,
.bayt-property-amenities h2,
.bayt-property-map h2,
.bayt-property-faqs h2 {
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 24px;
}

.bayt-property-description__body,
.bayt-property-description p,
.bayt-property-amenities > p,
.bayt-property-map p,
.bayt-property-faq p,
.bayt-property-faqs__intro {
	color: #45464d;
	font-size: 16px;
	line-height: 1.7;
}

.bayt-property-description__body a {
	color: var(--bayt-detail-primary);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

.bayt-property-description__body h2 {
	margin-top: 30px;
}

.bayt-property-description__body ul {
	color: #45464d;
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	line-height: 1.6;
	list-style: disc;
	margin: 16px 0 22px 20px;
	padding: 0;
}

.bayt-property-description__body li {
	padding-left: 2px;
}

.bayt-property-description__body {
	position: relative;
}

.bayt-property-description__body.is-collapsed {
	max-height: 245px;
	overflow: hidden;
}

.bayt-property-description__body.is-collapsed::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 88%);
	bottom: 0;
	content: "";
	height: 88px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
}

.bayt-property-description__toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--bayt-detail-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 900;
	margin-top: 20px;
	padding: 0;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.bayt-property-map p {
	margin: -12px 0 20px;
}

.bayt-property-travel {
	border-bottom: 1px solid #eeeeee;
	border-top: 1px solid #eeeeee;
	margin: 0 0 22px;
	padding: 18px 0;
}

.bayt-property-travel h3 {
	color: var(--bayt-detail-text);
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 14px;
}

.bayt-property-travel ul {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.bayt-property-travel li {
	min-width: 0;
}

.bayt-property-travel span,
.bayt-property-travel strong {
	display: block;
}

.bayt-property-travel span {
	color: var(--bayt-detail-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.bayt-property-travel strong {
	color: var(--bayt-detail-text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
	margin-top: 5px;
}

.bayt-property-faqs__intro {
	margin: -12px 0 20px;
	max-width: 640px;
}

.bayt-property-map__frame {
	aspect-ratio: 16 / 9;
	background: #f4f0eb;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.bayt-property-map__frame iframe {
	border: 0;
	display: block;
	filter: saturate(0.9) contrast(0.98);
	height: 100%;
	width: 100%;
}

.bayt-property-map__canvas {
	background:
		radial-gradient(circle at 78% 22%, rgba(18, 140, 126, 0.14) 0 8%, transparent 9%),
		linear-gradient(135deg, rgba(161, 90, 36, 0.12) 0 12%, transparent 13%),
		#f5f1eb;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.bayt-property-map__canvas::before,
.bayt-property-map__canvas::after {
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(27, 27, 29, 0.05);
	border-radius: 999px;
	content: "";
	position: absolute;
}

.bayt-property-map__canvas::before {
	height: 86%;
	left: 46%;
	top: -10%;
	transform: rotate(22deg);
	width: 13%;
}

.bayt-property-map__canvas::after {
	height: 16%;
	left: -6%;
	top: 48%;
	transform: rotate(-8deg);
	width: 112%;
}

.bayt-property-map__road {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(27, 27, 29, 0.05);
	border-radius: 999px;
	position: absolute;
}

.bayt-property-map__road--one {
	height: 14%;
	left: -8%;
	top: 22%;
	transform: rotate(13deg);
	width: 118%;
}

.bayt-property-map__road--two {
	height: 12%;
	left: 12%;
	top: 70%;
	transform: rotate(-18deg);
	width: 94%;
}

.bayt-property-map__road--three {
	height: 92%;
	left: 18%;
	top: 2%;
	transform: rotate(-18deg);
	width: 10%;
}

.bayt-property-map__road--four {
	height: 11%;
	left: 24%;
	top: 39%;
	transform: rotate(38deg);
	width: 70%;
}

.bayt-property-map__pin {
	background: var(--bayt-detail-primary);
	border: 4px solid #ffffff;
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 18px 32px rgba(27, 27, 29, 0.24);
	height: 42px;
	left: 50%;
	position: absolute;
	top: 47%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 42px;
	z-index: 3;
}

.bayt-property-map__pin::after {
	background: #ffffff;
	border-radius: 50%;
	content: "";
	height: 12px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
}

.bayt-property-map__label {
	background: #ffffff;
	border: 1px solid rgba(27, 27, 29, 0.12);
	border-radius: 999px;
	box-shadow: 0 14px 28px rgba(27, 27, 29, 0.12);
	color: var(--bayt-detail-text);
	font-size: 14px;
	font-weight: 900;
	left: 50%;
	padding: 10px 14px;
	position: absolute;
	top: calc(47% + 34px);
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 4;
}

.bayt-property-map__open {
	background: #ffffff;
	border: 1px solid rgba(27, 27, 29, 0.14);
	border-radius: 999px;
	bottom: 18px;
	box-shadow: 0 12px 28px rgba(27, 27, 29, 0.14);
	color: var(--bayt-detail-text);
	font-size: 14px;
	font-weight: 900;
	left: 18px;
	padding: 10px 14px;
	position: absolute;
	text-decoration: none;
	z-index: 5;
}

.bayt-property-faqs__list {
	border-top: 1px solid var(--bayt-detail-border);
}

.bayt-property-faq {
	border-bottom: 1px solid var(--bayt-detail-border);
}

.bayt-property-faq summary {
	align-items: center;
	color: var(--bayt-detail-text);
	cursor: pointer;
	display: flex;
	font-size: 17px;
	font-weight: 900;
	gap: 20px;
	justify-content: space-between;
	list-style: none;
	padding: 24px 0;
}

.bayt-property-faq summary::-webkit-details-marker {
	display: none;
}

.bayt-property-faq summary::after {
	align-items: center;
	border: 1px solid rgba(27, 27, 29, 0.18);
	border-radius: 50%;
	content: "+";
	display: inline-flex;
	flex: 0 0 28px;
	font-size: 20px;
	height: 28px;
	justify-content: center;
	line-height: 1;
	width: 28px;
}

.bayt-property-faq[open] summary::after {
	content: "-";
}

.bayt-property-faq p {
	margin: -8px 0 24px;
}

.bayt-property-amenities__list {
	gap: 24px 56px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bayt-property-amenities__list li {
	align-items: center;
	color: var(--bayt-detail-text);
	display: flex;
	font-size: 16px;
	font-weight: 500;
	gap: 18px;
	line-height: 1.35;
	min-width: 0;
}

.bayt-property-amenities__list li::before {
	content: none;
}

.bayt-property-amenities__icon {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--bayt-detail-text);
	display: inline-flex;
	flex: 0 0 28px;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.bayt-property-amenities__icon svg {
	display: block;
	height: 26px;
	width: 26px;
}

.bayt-property-amenities__text {
	min-width: 0;
}

.bayt-property-amenities__disclosure {
	margin-top: 16px;
}

.bayt-property-amenities__toggle {
	align-items: center;
	background: #f6f3f5;
	border: 1px solid var(--bayt-detail-text);
	border-radius: 12px;
	color: var(--bayt-detail-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.25;
	list-style: none;
	min-height: 48px;
	padding: 13px 20px;
	transition: background-color 180ms ease-out, color 180ms ease-out;
}

.bayt-property-amenities__toggle::-webkit-details-marker {
	display: none;
}

.bayt-property-amenities__toggle:hover {
	background: #eae7e9;
}

.bayt-property-amenities__toggle:focus-visible {
	outline: 3px solid #9d4300;
	outline-offset: 3px;
}

.bayt-property-amenities__show-fewer {
	display: none;
}

.bayt-property-amenities__disclosure[open] .bayt-property-amenities__show-all {
	display: none;
}

.bayt-property-amenities__disclosure[open] .bayt-property-amenities__show-fewer {
	display: inline;
}

.bayt-property-amenities__disclosure[open] {
	display: flex;
	flex-direction: column;
}

.bayt-property-amenities__disclosure[open] .bayt-property-amenities__toggle {
	align-self: flex-start;
	margin-top: 16px;
	order: 2;
}

.bayt-property-amenities__list--extra {
	margin-top: 0;
	order: 1;
}

.bayt-property-amenities__extra-panel {
	overflow: hidden;
	order: 1;
}

.bayt-detail-booking-card {
	background: #ffffff;
	border: 1px solid var(--bayt-detail-border);
	border-radius: 16px;
	box-shadow: none;
	padding: 24px;
	position: sticky;
	top: 112px;
}

.bayt-detail-booking-card__flag {
	background: var(--bayt-detail-primary);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 10px;
	font-weight: 900;
	left: 50%;
	letter-spacing: 0.08em;
	line-height: 1;
	margin: 0;
	padding: 8px 14px;
	position: absolute;
	text-transform: uppercase;
	top: -13px;
	transform: translateX(-50%);
	white-space: nowrap;
}

.bayt-detail-booking-card__top {
	align-items: baseline;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding-top: 8px;
}

.bayt-detail-booking-card__top h2 {
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
}

.bayt-property-detail .bayt-price {
	align-items: baseline;
	display: inline-flex;
	gap: 6px;
	white-space: nowrap;
}

.bayt-property-detail .bayt-price-amount {
	color: inherit;
	font: inherit;
}

.bayt-property-detail .bayt-price-suffix {
	color: var(--bayt-detail-muted);
	font-size: 0.52em;
	font-weight: 700;
	line-height: 1;
	text-transform: lowercase;
}

.bayt-detail-booking-card__top > span {
	background: rgba(18, 140, 126, 0.1);
	border-radius: 6px;
	color: var(--bayt-detail-green);
	font-size: 11px;
	font-weight: 900;
	padding: 6px 8px;
	text-transform: uppercase;
	white-space: nowrap;
}

.bayt-detail-booking-card__form,
.bayt-booking-form {
	display: block;
	margin-top: 24px;
}

.bayt-booking-inline {
	margin-top: 24px;
}

.bayt-booking-inline h3 {
	color: var(--bayt-detail-primary);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.bayt-booking-inline .bayt-booking-form {
	margin-top: 0;
}

.bayt-booking-flow {
	display: grid;
	gap: 20px;
}

.bayt-booking-step {
	display: grid;
	gap: 14px;
}

.bayt-detail-booking-card__form.is-stepped .bayt-booking-step[hidden],
.bayt-booking-form.is-stepped .bayt-booking-step[hidden] {
	display: none;
}

.bayt-booking-step h3 {
	color: var(--bayt-detail-primary);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.bayt-booking-step__panel {
	background: var(--bayt-detail-soft);
	border: 1px solid #dddddd;
	border-radius: 12px;
	padding: 16px;
}

/* Shared appointment calendar: vanilla equivalent of the supplied DayPicker. */
.bayt-appointment-picker {
	min-width: 0;
}

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

.bayt-appointment-picker__enhanced {
	display: none;
}

.bayt-appointment-picker.is-enhanced .bayt-appointment-picker__fallback {
	display: none;
}

.bayt-appointment-picker.is-enhanced .bayt-appointment-picker__enhanced {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) 164px;
	overflow: hidden;
}

.bayt-appointment-calendar-panel {
	min-width: 0;
	padding: 12px;
}

.bayt-appointment-calendar__header {
	align-items: center;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	margin-bottom: 4px;
}

.bayt-appointment-calendar__header p {
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	margin: 0;
	text-align: center;
}

.bayt-appointment-calendar__nav {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: #45464d;
	cursor: pointer;
	display: inline-flex;
	font-size: 26px;
	height: 38px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 38px;
}

.bayt-appointment-calendar__nav:hover,
.bayt-appointment-calendar__nav:focus-visible {
	background: #f0edef;
	color: #0f172a;
}

.bayt-appointment-calendar__nav:focus-visible,
.bayt-appointment-day:focus-visible,
.bayt-appointment-time:focus-visible {
	outline: 3px solid rgba(157, 67, 0, 0.35);
	outline-offset: 1px;
}

.bayt-appointment-calendar__nav:disabled {
	cursor: default;
	opacity: 0.3;
}

.bayt-appointment-calendar__weekdays,
.bayt-appointment-calendar__grid {
	display: grid;
	gap: 3px;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.bayt-appointment-calendar__weekdays span {
	align-items: center;
	color: #686a72;
	display: flex;
	font-size: 10px;
	font-weight: 800;
	height: 30px;
	justify-content: center;
}

.bayt-appointment-day {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: #1b1b1d;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 100%;
}

.bayt-appointment-day:hover:not(:disabled) {
	background: #f0edef;
}

.bayt-appointment-day.is-selected,
.bayt-appointment-day[aria-pressed="true"] {
	background: #0f172a;
	color: #ffffff;
}

.bayt-appointment-day.is-today::after {
	background: #9d4300;
	border-radius: 50%;
	bottom: 3px;
	content: "";
	height: 3px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3px;
}

.bayt-appointment-day.is-selected.is-today::after {
	background: #ffffff;
}

.bayt-appointment-day.is-outside {
	color: #8b8c92;
}

.bayt-appointment-day:disabled {
	color: #a7a7ac;
	cursor: not-allowed;
	text-decoration: line-through;
}

.bayt-appointment-times {
	background: #f6f3f5;
	border-left: 1px solid #d8d6d8;
	min-width: 0;
	padding: 14px 12px;
}

.bayt-appointment-times__heading {
	display: grid;
	gap: 2px;
	margin-bottom: 10px;
}

.bayt-appointment-times__heading strong {
	color: #0f172a;
	font-size: 13px;
	line-height: 1.3;
}

.bayt-appointment-times__heading span {
	color: #686a72;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.bayt-appointment-times__slots {
	display: grid;
	gap: 6px;
	max-height: 272px;
	overflow-y: auto;
	padding: 2px 3px 2px 0;
	scrollbar-color: #a7a7ac transparent;
	scrollbar-width: thin;
}

.bayt-appointment-time {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	color: #0f172a;
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	min-height: 34px;
	padding: 6px 8px;
	width: 100%;
}

.bayt-appointment-time:hover:not(:disabled) {
	border-color: #9d4300;
}

.bayt-appointment-time.is-selected,
.bayt-appointment-time[aria-pressed="true"] {
	background: #9d4300;
	border-color: #9d4300;
	color: #ffffff;
}

.bayt-appointment-time:disabled {
	background: #ece9eb;
	color: #8b8c92;
	cursor: not-allowed;
}

.bayt-appointment-picker__note {
	color: #54545c;
	font-size: 11px;
	line-height: 1.5;
	margin: 9px 0 0;
}

.bayt-appointment-picker__status {
	color: #8a2f1d;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
	margin: 5px 0 0;
	min-height: 17px;
}

.bayt-booking-inline .bayt-appointment-picker.is-enhanced .bayt-appointment-picker__enhanced {
	grid-template-columns: 1fr;
}

.bayt-booking-inline .bayt-appointment-times {
	border-left: 0;
	border-top: 1px solid #d8d6d8;
}

.bayt-booking-inline .bayt-appointment-times__slots {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-height: 180px;
}

.bayt-viewing-appointment {
	min-width: 0;
}

@media (max-width: 600px) {
	.bayt-appointment-picker__fallback {
		grid-template-columns: 1fr;
	}

	.bayt-appointment-picker.is-enhanced .bayt-appointment-picker__enhanced {
		grid-template-columns: 1fr;
	}

	.bayt-appointment-times {
		border-left: 0;
		border-top: 1px solid #d8d6d8;
	}

	.bayt-appointment-times__slots {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-height: 180px;
	}
}

.bayt-booking-calendar {
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.bayt-booking-calendar__day {
	align-content: center;
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 10px;
	color: var(--bayt-detail-text);
	cursor: pointer;
	display: grid;
	gap: 1px;
	justify-items: center;
	min-height: 56px;
	padding: 6px 2px;
	text-align: center;
}

.bayt-booking-calendar__day span,
.bayt-booking-calendar__day em {
	color: var(--bayt-detail-muted);
	font-size: 10px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.bayt-booking-calendar__day strong {
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
}

@media (max-width: 480px) {
	.bayt-booking-calendar {
		gap: 4px;
	}
	.bayt-booking-calendar__day {
		min-height: 50px;
		padding: 5px 1px;
	}
	.bayt-booking-calendar__day em {
		display: none;
	}
}

/* Global "Book a viewing" modal (opened from the header CTA). */
.bayt-booking-modal[hidden] {
	display: none;
}
.bayt-booking-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 24px 16px;
	overflow-y: auto;
	background: rgba(15, 23, 42, 0.55);
}
body.bayt-booking-modal-open {
	overflow: hidden;
}
.bayt-booking-modal__dialog {
	/* The booking form/calendar read these --bayt-detail-* tokens, which are
	   otherwise only defined inside .bayt-property-detail. Without them the
	   submit button background collapses to white-on-white in the modal. */
	--bayt-detail-primary: #a15a24;
	--bayt-detail-primary-dark: #844a1d;
	--bayt-detail-text: #1b1b1d;
	--bayt-detail-muted: #717171;
	--bayt-detail-soft: #f9f9f9;
	--bayt-detail-border: #eeeeee;
	--bayt-detail-green: #0e6f63;
	position: relative;
	width: 100%;
	max-width: 540px;
	margin: auto;
	background: #ffffff;
	border-radius: 18px;
	padding: 28px 24px 24px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}
.bayt-booking-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: #f0edef;
	color: #0f172a;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.bayt-booking-modal__close:hover,
.bayt-booking-modal__close:focus {
	background: #e2dce0;
}
.bayt-booking-modal__title {
	margin: 0 0 4px;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
}
.bayt-booking-modal__intro {
	margin: 0 0 18px;
	font-size: 14px;
	color: #54545c;
}

.bayt-booking-calendar__day:hover,
.bayt-booking-calendar__day:focus,
.bayt-booking-calendar__day.is-selected,
.bayt-booking-calendar__day[aria-pressed="true"] {
	border-color: var(--bayt-detail-primary);
	box-shadow: 0 0 0 3px rgba(161, 90, 36, 0.16);
}

.bayt-booking-calendar + input[type="date"] {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bayt-booking-time-grid,
.bayt-booking-contact-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bayt-detail-booking-card .bayt-field,
.bayt-booking-form .bayt-field {
	gap: 7px;
}

.bayt-detail-booking-card .bayt-field span,
.bayt-booking-form .bayt-field span {
	color: var(--bayt-detail-text);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.bayt-detail-booking-card .bayt-field input,
.bayt-detail-booking-card .bayt-field textarea,
.bayt-detail-booking-card .bayt-field select,
.bayt-booking-form .bayt-field input,
.bayt-booking-form .bayt-field textarea,
.bayt-booking-form .bayt-field select {
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 12px;
	color: var(--bayt-detail-text, #1b1b1d);
	font-size: 14px;
	min-height: 46px;
	min-width: 0;
	padding: 12px 14px;
	width: 100%;
}

.bayt-booking-inline .bayt-booking-contact-grid {
	grid-template-columns: 1fr;
}

@media (min-width: 901px) {
	.bayt-booking-modal__dialog {
		max-width: 900px;
		padding: 36px;
	}

	.bayt-booking-modal .bayt-appointment-picker.is-enhanced .bayt-appointment-picker__enhanced,
	.bayt-viewing-appointment .bayt-appointment-picker.is-enhanced .bayt-appointment-picker__enhanced {
		grid-template-columns: minmax(440px, 1fr) minmax(230px, 0.5fr);
	}

	.bayt-booking-modal .bayt-appointment-calendar-panel,
	.bayt-viewing-appointment .bayt-appointment-calendar-panel {
		padding: 20px;
	}

	.bayt-booking-modal .bayt-appointment-calendar__header p,
	.bayt-viewing-appointment .bayt-appointment-calendar__header p {
		font-size: 16px;
	}

	.bayt-booking-modal .bayt-appointment-calendar__weekdays span,
	.bayt-viewing-appointment .bayt-appointment-calendar__weekdays span {
		font-size: 11px;
		height: 36px;
	}

	.bayt-booking-modal .bayt-appointment-day,
	.bayt-viewing-appointment .bayt-appointment-day {
		font-size: 15px;
		height: 48px;
	}

	.bayt-booking-modal .bayt-appointment-times,
	.bayt-viewing-appointment .bayt-appointment-times {
		padding: 20px 16px;
	}

	.bayt-booking-modal .bayt-appointment-times__slots,
	.bayt-viewing-appointment .bayt-appointment-times__slots {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: 360px;
	}

	.bayt-booking-modal .bayt-appointment-time,
	.bayt-viewing-appointment .bayt-appointment-time {
		font-size: 13px;
		min-height: 42px;
	}

	.bayt-booking-modal .bayt-booking-contact-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.bayt-detail-booking-card .bayt-field select,
.bayt-booking-form .bayt-field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}

.bayt-detail-booking-card .bayt-field input:focus,
.bayt-detail-booking-card .bayt-field textarea:focus,
.bayt-booking-form .bayt-field input:focus,
.bayt-booking-form .bayt-field textarea:focus {
	border-color: var(--bayt-detail-primary);
	box-shadow: 0 0 0 3px rgba(161, 90, 36, 0.18);
}

.bayt-booking-form .bayt-field {
	display: grid;
}

.bayt-booking-form .bayt-field--full {
	grid-column: 1 / -1;
}

.bayt-booking-form .bayt-field--website[hidden] {
	display: none;
}

.bayt-booking-next {
	display: none;
}

.bayt-booking-step__actions {
	display: grid;
	gap: 10px;
	grid-template-columns: 0.8fr 1fr;
}

.bayt-booking-back,
.bayt-detail-booking-card__form.is-stepped .bayt-booking-next,
.bayt-booking-form.is-stepped .bayt-booking-next {
	align-items: center;
	background: var(--bayt-detail-soft);
	border: 1px solid #dddddd;
	border-radius: 12px;
	color: var(--bayt-detail-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	padding: 12px 16px;
	width: 100%;
}

.bayt-booking-back:hover,
.bayt-booking-back:focus,
.bayt-detail-booking-card__form.is-stepped .bayt-booking-next:hover,
.bayt-detail-booking-card__form.is-stepped .bayt-booking-next:focus,
.bayt-booking-form.is-stepped .bayt-booking-next:hover,
.bayt-booking-form.is-stepped .bayt-booking-next:focus {
	border-color: var(--bayt-detail-primary);
}

.bayt-booking-submit {
	background: var(--bayt-detail-primary);
	border: 1px solid var(--bayt-detail-primary);
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	font-size: 17px;
	font-weight: 900;
	min-height: 54px;
	padding: 14px 18px;
	width: 100%;
}

.bayt-booking-submit:hover,
.bayt-booking-submit:focus {
	background: var(--bayt-detail-primary-dark);
	border-color: var(--bayt-detail-primary-dark);
}

.bayt-detail-booking-card__note {
	color: var(--bayt-detail-muted);
	font-size: 11px;
	line-height: 1.5;
	margin: 12px 0 0;
	text-align: center;
}

.bayt-detail-booking-card__form .bayt-booking-whatsapp {
	margin-top: 12px;
}

.bayt-booking-costs {
	border-top: 1px solid var(--bayt-detail-border);
	display: grid;
	gap: 14px;
	margin-top: 24px;
	padding-top: 24px;
}

.bayt-booking-costs div {
	align-items: baseline;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.bayt-booking-costs div > span {
	color: var(--bayt-detail-text);
	font-size: 14px;
	font-weight: 700;
}

.bayt-booking-costs strong {
	color: var(--bayt-detail-text);
	font-size: 14px;
	font-weight: 900;
	text-align: right;
}

.bayt-booking-costs div:nth-child(2) strong,
.bayt-booking-costs div:nth-child(3) strong {
	color: var(--bayt-detail-green);
	text-transform: uppercase;
}

.bayt-booking-costs div:last-child {
	border-top: 2px dashed var(--bayt-detail-border);
	padding-top: 16px;
}

.bayt-booking-costs div:last-child > span,
.bayt-booking-costs div:last-child strong {
	font-size: 20px;
	font-weight: 900;
}

.bayt-booking-costs .bayt-price-suffix {
	font-size: 0.62em;
	font-weight: 700;
}

.bayt-booking-primary {
	align-items: center;
	background: var(--bayt-detail-primary);
	border: 2px solid var(--bayt-detail-primary);
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 17px;
	font-weight: 900;
	justify-content: center;
	margin-top: 24px;
	min-height: 54px;
	padding: 14px 18px;
	width: 100%;
}

.bayt-booking-primary:hover,
.bayt-booking-primary:focus {
	background: var(--bayt-detail-primary-dark);
	border-color: var(--bayt-detail-primary-dark);
	color: #ffffff;
}

.bayt-booking-whatsapp {
	align-items: center;
	border: 2px solid var(--bayt-detail-green);
	border-radius: 12px;
	color: var(--bayt-detail-green);
	display: flex;
	font-size: 15px;
	font-weight: 900;
	justify-content: center;
	margin-top: 24px;
	min-height: 48px;
	padding: 12px 16px;
	text-decoration: none;
}

.bayt-booking-whatsapp:hover,
.bayt-booking-whatsapp:focus {
	background: rgba(18, 140, 126, 0.08);
	color: var(--bayt-detail-green);
}

.bayt-booking-apply {
	align-items: center;
	background: #ffffff;
	border: 2px solid var(--bayt-detail-primary);
	border-radius: 12px;
	color: var(--bayt-detail-primary);
	cursor: pointer;
	display: flex;
	font-size: 15px;
	font-weight: 900;
	justify-content: center;
	margin-top: 12px;
	min-height: 50px;
	padding: 13px 16px;
	text-decoration: none;
	width: 100%;
}

.bayt-booking-apply:hover,
.bayt-booking-apply:focus {
	background: rgba(161, 90, 36, 0.08);
	border-color: var(--bayt-detail-primary);
	color: var(--bayt-detail-primary);
}

.bayt-detail-booking-card__status {
	font-size: 13px;
	margin-top: 12px;
}

.bayt-booking-modal[hidden] {
	display: none;
}

.bayt-booking-modal {
	align-items: flex-start;
	background: rgba(27, 27, 29, 0.58);
	display: flex;
	inset: 0;
	justify-content: center;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 24px;
	position: fixed;
	z-index: 10020;
}

.bayt-booking-modal__dialog {
	background: #ffffff;
	border-radius: 18px;
	box-sizing: border-box;
	box-shadow: 0 30px 80px rgba(27, 27, 29, 0.28);
	margin: auto;
	max-width: 720px;
	min-width: 0;
	overflow: visible;
	padding: 28px;
	position: relative;
	width: min(100%, 720px);
}

@media (max-width: 600px) {
	.bayt-booking-modal {
		padding: 12px;
	}

	.bayt-booking-modal__dialog {
		border-radius: 14px;
		padding: 22px 18px 20px;
	}
}

.bayt-booking-modal__header {
	align-items: flex-start;
	border-bottom: 1px solid var(--bayt-detail-border);
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 24px;
	padding-bottom: 18px;
}

.bayt-booking-modal__header p,
.bayt-booking-page__hero p {
	color: var(--bayt-detail-primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.bayt-booking-modal__header h2,
.bayt-booking-page__hero h1 {
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.15;
	margin: 0;
}

.bayt-booking-modal__close {
	background: var(--bayt-detail-soft);
	border: 1px solid var(--bayt-detail-border);
	border-radius: 999px;
	color: var(--bayt-detail-text);
	cursor: pointer;
	font-size: 14px;
	font-weight: 900;
	padding: 10px 14px;
}

.bayt-booking-modal-open {
	overflow: hidden;
}

.bayt-cal-booking {
	min-height: 560px;
}

.bayt-booking-page {
	background: #ffffff;
	color: var(--bayt-detail-text, #1b1b1d);
	/* #main-wrap already clears the fixed header; only a little breathing room
	   is needed here (was 132px, which double-clearanced the header). */
	padding-top: 8px;
}

.bayt-booking-page__inner {
	margin: 0 auto;
	max-width: 880px;
	padding: 0 24px;
}

.bayt-booking-page__hero {
	background: #fcf8fa;
	border-bottom: 1px solid #eeeeee;
	padding: 56px 0 42px;
}

.bayt-booking-page__hero span {
	color: #45464d;
	display: block;
	font-size: 18px;
	line-height: 1.6;
	margin-top: 14px;
	max-width: 620px;
}

.bayt-booking-page__panel {
	padding: 42px 0 80px;
}

.bayt-booking-page .bayt-booking-form {
	border: 1px solid #eeeeee;
	border-radius: 18px;
	box-shadow: 0 24px 48px rgba(27, 27, 29, 0.08);
	margin-top: 0;
	padding: 28px;
}

.bayt-booking-page .bayt-booking-calendar {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bayt-booking-page .bayt-booking-contact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* /book-now/ tenancy application choice page. */
.bayt-apply-intro {
	max-width: 620px;
	margin-bottom: 28px;
}

.bayt-apply-intro__kicker,
.bayt-apply-reviews__heading p,
.bayt-apply-card__eyebrow {
	color: #9d4300;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.bayt-apply-intro h2,
.bayt-apply-reviews__heading h2 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 10px;
}

.bayt-apply-intro > p:last-child {
	color: #54545c;
	font-size: 16px;
	margin: 0;
}

.bayt-apply-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
}

.bayt-apply-card {
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 20px;
	box-shadow: 0 24px 48px rgba(27, 27, 29, 0.08);
	display: grid;
	grid-template-columns: auto 1fr;
	padding: 28px;
	position: relative;
}

.bayt-apply-card__number {
	align-items: center;
	background: #fff2ec;
	border-radius: 999px;
	color: #9d4300;
	display: flex;
	font-size: 12px;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	margin-right: 16px;
	width: 34px;
}

.bayt-apply-card__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bayt-apply-card__content h2 {
	margin: 0 0 6px;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: 25px;
	font-weight: 800;
	color: #0f172a;
}

.bayt-apply-card__content > p:not(.bayt-apply-card__eyebrow) {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.55;
	color: #54545c;
}

.bayt-apply-card__content ul {
	border-top: 1px solid #f0edef;
	list-style: none;
	margin: 0 0 24px;
	padding: 17px 0 0;
}

.bayt-apply-card__content li {
	color: #303039;
	font-size: 14px;
	margin: 0 0 9px;
	padding-left: 23px;
	position: relative;
}

.bayt-apply-card__content li::before {
	color: #9d4300;
	content: "✓";
	font-weight: 900;
	left: 0;
	position: absolute;
}

.bayt-apply-card__open {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	background: #9d4300;
	color: #ffffff;
	font-weight: 800;
	font-size: 15px;
	justify-content: center;
	margin-top: auto;
	padding: 12px 18px;
	border-radius: 12px;
	text-decoration: none;
}

.bayt-apply-card__open:hover,
.bayt-apply-card__open:focus {
	background: #844a1d;
	color: #ffffff;
}

.bayt-apply-card__open span {
	font-family: Arial, sans-serif;
}

.bayt-apply-card__content small {
	color: #74747c;
	font-size: 12px;
	margin-top: 10px;
}

.bayt-apply-help {
	align-items: center;
	background: #0f172a;
	border-radius: 16px;
	color: #ffffff;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-top: 20px;
	padding: 20px 24px;
}

.bayt-apply-help strong,
.bayt-apply-help span {
	display: block;
}

.bayt-apply-help strong {
	font-size: 16px;
	margin-bottom: 3px;
}

.bayt-apply-help div > span {
	color: #cbd5e1;
	font-size: 14px;
}

.bayt-apply-help a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
	white-space: nowrap;
}

.bayt-apply-reviews {
	background: #fff8f4;
	border-top: 1px solid #f2e5df;
	padding: 72px 0 82px;
}

.bayt-apply-reviews__heading {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 30px;
}

.bayt-apply-reviews__heading h2 {
	margin-bottom: 0;
}

.bayt-apply-reviews__heading > a {
	color: #9d4300;
	font-size: 14px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-apply-reviews__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1.25fr 1fr 1fr;
}

.bayt-apply-review {
	background: #ffffff;
	border: 1px solid #f0e4de;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	margin: 0;
	min-height: 250px;
	padding: 24px;
}

.bayt-apply-review:first-child {
	background: #9d4300;
	border-color: #9d4300;
	color: #ffffff;
}

.bayt-apply-review__stars {
	color: #e9a23b;
	font-size: 15px;
	letter-spacing: 0.08em;
	margin-bottom: 18px;
}

.bayt-apply-review:first-child .bayt-apply-review__stars {
	color: #ffd38c;
}

.bayt-apply-review blockquote {
	color: #303039;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.55;
	margin: 0 0 22px;
}

.bayt-apply-review:first-child blockquote {
	color: #ffffff;
	font-size: 19px;
}

.bayt-apply-review figcaption {
	align-items: end;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: auto;
}

.bayt-apply-review figcaption strong {
	color: #0f172a;
	font-size: 14px;
}

.bayt-apply-review figcaption a {
	color: #9d4300;
	font-size: 12px;
	font-weight: 800;
}

.bayt-apply-review:first-child figcaption strong,
.bayt-apply-review:first-child figcaption a {
	color: #ffffff;
}

@media (max-width: 900px) {
	.bayt-apply-grid {
		grid-template-columns: 1fr;
	}

	.bayt-apply-reviews__grid {
		grid-template-columns: 1fr;
	}

	.bayt-apply-review {
		min-height: 0;
	}
}

@media (max-width: 600px) {
	.bayt-booking-page__panel {
		padding: 34px 0 56px;
	}

	.bayt-apply-card {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.bayt-apply-card__number {
		margin: 0 0 18px;
	}

	.bayt-apply-card__open {
		align-self: stretch;
	}

	.bayt-apply-help,
	.bayt-apply-reviews__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.bayt-apply-help a {
		white-space: normal;
	}

	.bayt-apply-reviews {
		padding: 56px 0 64px;
	}
}

.bayt-booking-page .bayt-booking-time-grid {
	max-width: 360px;
}

.bayt-booking-page .bayt-booking-step__actions {
	max-width: 520px;
}

.bayt-booking-page .bayt-booking-submit {
	min-width: 220px;
	width: auto;
}

.bayt-booking-page .bayt-detail-booking-card__status {
	max-width: 560px;
}

.bayt-booking-page .bayt-field--website[hidden] {
	display: none;
}

.bayt-similar-listings {
	background: #ffffff;
	border-top: 1px solid var(--bayt-detail-border);
	padding: 64px 0;
}

.bayt-similar-listings__header {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 40px;
}

.bayt-similar-listings__header h2,
.bayt-similar-listings h2 {
	color: var(--bayt-detail-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 8px;
}

.bayt-similar-listings__header p {
	color: var(--bayt-detail-muted);
	font-size: 15px;
	line-height: 1.4;
	margin: 0;
}

.bayt-similar-listings__header a {
	color: var(--bayt-detail-primary);
	font-size: 15px;
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.bayt-similar-listings__grid {
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bayt-similar-listings__item a {
	display: block;
	padding: 0;
}

.bayt-similar-listings__item img {
	aspect-ratio: 1;
	border-radius: 12px;
	margin-bottom: 12px;
	transition: transform 700ms ease;
}

.bayt-similar-listings__item a:hover img,
.bayt-similar-listings__item a:focus img {
	transform: scale(1.03);
}

.bayt-similar-listings__item span,
.bayt-similar-listings__item h3,
.bayt-similar-listings__item p {
	margin-left: 0;
	margin-right: 0;
}

.bayt-similar-listings__item h3 {
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
	margin-bottom: 4px;
}

.bayt-similar-listings__item p {
	color: var(--bayt-detail-muted);
	font-size: 14px;
	margin-bottom: 4px;
}

.bayt-similar-listings__item span {
	color: var(--bayt-detail-primary);
	display: block;
	font-size: 16px;
	font-weight: 900;
}

.bayt-similar-listings__item .bayt-price {
	display: inline-flex;
}

.bayt-similar-listings__item .bayt-price span {
	margin-left: 0;
	margin-right: 0;
}

@media (max-width: 1024px) {
	.bayt-property-detail__layout {
		gap: 40px;
		grid-template-columns: 1fr;
		margin-bottom: 72px;
	}

	.bayt-property-detail__content {
		display: contents;
	}

	.bayt-property-travel-summary {
		order: 1;
	}

	.bayt-detail-booking-card {
		order: 2;
		position: static;
	}

	.bayt-property-amenities {
		order: 3;
	}

	.bayt-property-description {
		order: 4;
	}

	.bayt-property-map {
		order: 5;
	}

	.bayt-property-faqs {
		order: 6;
	}

	.bayt-similar-listings__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.bayt-property-detail__wrap {
		padding: 24px 18px 0;
	}

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

	.bayt-property-hero__actions {
		justify-content: flex-start;
	}

	.bayt-property-gallery__grid {
		grid-template-columns: 1fr;
		grid-template-rows: 300px;
	}

	.bayt-property-gallery__item:nth-child(n+2) {
		display: none;
	}

	.bayt-property-travel-summary ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 560px) {
	.bayt-property-hero h1 {
		font-size: 30px;
	}

	.bayt-property-hero__actions {
		gap: 8px;
	}

	.bayt-property-share,
	.bayt-property-save {
		flex: 0 1 auto;
	}

	.bayt-property-travel-summary ul,
	.bayt-property-amenities__list,
	.bayt-booking-time-grid,
	.bayt-booking-contact-grid,
	.bayt-similar-listings__grid {
		grid-template-columns: 1fr;
	}

	.bayt-property-travel-summary ul {
		gap: 18px;
	}

	.bayt-property-travel-summary li {
		border-bottom: 1px solid #eeeeee;
		padding-bottom: 14px;
	}

	.bayt-property-travel-summary li:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.bayt-property-amenities__toggle,
	.bayt-property-amenities__disclosure[open] .bayt-property-amenities__toggle {
		align-self: stretch;
		width: 100%;
	}

	.bayt-property-map__frame {
		aspect-ratio: 4 / 3;
		border-radius: 12px;
	}

	.bayt-detail-booking-card {
		border-radius: 12px;
		padding: 22px 18px;
	}

	.bayt-detail-booking-card__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.bayt-similar-listings__header {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Blog and editorial polish */
.blog .blog-wrap *,
.single-post .blog-wrap * {
	box-sizing: border-box;
}

.blog .blog-wrap,
.single-post .blog-wrap {
	background: #fcf8fa;
	padding-bottom: 84px;
	padding-top: 72px;
}

.blog .blog-wrap .container,
.single-post .blog-wrap .container {
	max-width: 1180px;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}

.blog .page-title-wrap {
	margin: 0 0 28px;
}

.blog .page-title-wrap .page-title h1:empty {
	display: none;
}

.blog .page-title-wrap .page-title h1 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
}

.blog .article-wrap {
	margin-bottom: 24px;
}

.blog .post-wrap {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: 8px 8px 0 rgba(15, 23, 42, 0.08);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	min-width: 0;
	overflow: hidden;
}

.blog .post-wrap:has(.post-thumbnail-wrap img) {
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.blog .post-thumbnail-wrap {
	display: none;
	grid-row: 1 / span 2;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.blog .post-wrap:has(.post-thumbnail-wrap img) .post-thumbnail-wrap {
	display: block;
}

.blog .post-thumbnail-wrap a {
	display: block;
	height: 100%;
}

.blog .post-thumbnail-wrap img {
	display: block;
	height: 100% !important;
	min-height: 220px;
	object-fit: cover;
	width: 100%;
}

.blog .post-wrap:has(.post-thumbnail-wrap img) .post-thumbnail-wrap + .post-inner-wrap,
.blog .post-wrap:has(.post-thumbnail-wrap img) .post-thumbnail-wrap ~ .post-footer-wrap {
	grid-column: 2;
}

.blog .post-wrap > .post-inner-wrap:first-child,
.blog .post-wrap > .post-inner-wrap:first-child + .post-footer-wrap {
	grid-column: 1 / -1;
}

.blog .post-inner-wrap {
	min-width: 0;
	padding: 24px 26px 14px;
}

.blog .post-title-wrap h2 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
	overflow-wrap: anywhere;
}

.blog .post-title-wrap h2 a {
	color: inherit;
	text-decoration: none;
}

.blog .post-title-wrap h2 a:hover,
.blog .post-title-wrap h2 a:focus {
	color: #9d4300;
}

.blog .post-excerpt-wrap {
	margin-top: 14px;
}

.blog .post-excerpt-wrap p {
	color: #45464d;
	display: -webkit-box;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.blog .post-footer-wrap {
	align-self: end;
	padding: 0 26px 24px;
}

.blog .post-footer-wrap .d-flex {
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
}

.blog .post-footer-wrap .btn,
.blog .post-footer-wrap .btn-primary {
	background: #0f172a;
	border: 2px solid #0f172a;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 800;
	min-height: 42px;
	padding: 10px 14px;
}

.single-post .single-article-wrap .post-wrap {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: 8px 8px 0 rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.single-post .post-content-wrap {
	color: #45464d;
	font-size: 17px;
	line-height: 1.75;
	max-width: 100%;
	overflow-x: hidden;
}

.single-post .post-content-wrap > * {
	max-width: 100%;
}

.single-post .post-content-wrap h2,
.single-post .post-content-wrap h3 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	letter-spacing: 0;
	line-height: 1.14;
	margin-top: 34px;
}

.single-post .post-content-wrap h2 {
	font-size: clamp(28px, 4vw, 40px);
}

.single-post .post-content-wrap h3 {
	font-size: clamp(22px, 3vw, 28px);
}

.single-post .post-content-wrap img,
.single-post .post-content-wrap iframe,
.single-post .post-content-wrap video {
	max-width: 100%;
}

.single-post .post-content-wrap img {
	height: auto;
	object-fit: cover;
}

.single-post .post-content-wrap .property-card,
.single-post .post-content-wrap .item-listing-wrap,
.single-post .post-content-wrap .item-listing,
.single-post .post-content-wrap .property-listing {
	box-sizing: border-box;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100% !important;
	min-width: 0 !important;
	width: 100% !important;
}

.single-post .post-content-wrap .property-card {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.single-post .post-content-wrap .bayt-property-results-grid,
.single-post .post-content-wrap .bayt-property-grid,
.single-post .post-content-wrap .houzez-properties,
.single-post .post-content-wrap .listing-view {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-post .post-content-wrap .item-listing-wrap img,
.single-post .post-content-wrap .item-listing img,
.single-post .post-content-wrap .property-listing img,
.single-post .post-content-wrap .property-card img {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: cover;
}

.single-post .post-content-wrap .schema-faq,
.single-post .post-content-wrap .schema-faq-section,
.single-post .post-content-wrap .wp-block-yoast-faq-block {
	background: #f6f3f5;
	border: 1px solid #c6c6cd;
	border-radius: 8px;
	display: grid;
	gap: 12px;
	margin: 28px 0;
	padding: 18px;
}

.single-post .post-content-wrap .schema-faq-question,
.single-post .post-content-wrap .schema-faq-section strong,
.single-post .post-content-wrap .wp-block-yoast-faq-block strong {
	color: #0f172a;
	display: block;
	font-weight: 800;
}

@media (max-width: 900px) {
	.bayt-main {
		padding-top: 76px;
	}

	.bayt-hero {
		padding: 64px 0 56px;
	}

	.bayt-revamp-core .bayt-hero {
		padding: 38px 0 30px;
	}

	.bayt-revamp-core .bayt-hero-grid {
		grid-template-columns: 1fr;
	}

	.bayt-revamp-core .bayt-trust-card {
		display: none;
	}

	.bayt-hero-grid,
	.bayt-two-col,
	.bayt-contact-grid,
	.bayt-card-grid {
		grid-template-columns: 1fr;
	}

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

	.bayt-action-head,
	.bayt-results-summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.bayt-filter-bar,
	.bayt-property-grid,
	.bayt-property-results-grid,
	.bayt-viewing-grid,
	.bayt-repair-grid,
	.bayt-route-grid,
	.bayt-proof-grid,
	.bayt-contact-layout,
	.bayt-about-layout,
	.bayt-proof-list,
	.bayt-revamp-lean .bayt-seo-bottom .bayt-two-col {
		grid-template-columns: 1fr;
	}

	.blog .blog-wrap,
	.single-post .blog-wrap {
		padding-bottom: 64px;
		padding-top: 52px;
	}

	.blog .post-wrap {
		grid-template-columns: 1fr;
	}

	.blog .post-thumbnail-wrap,
	.blog .post-thumbnail-wrap + .post-inner-wrap,
	.blog .post-thumbnail-wrap ~ .post-footer-wrap {
		grid-column: 1;
		grid-row: auto;
	}

	.blog .post-thumbnail-wrap img {
		aspect-ratio: 16 / 9;
		height: auto !important;
		min-height: 0;
	}

	.single-post .post-content-wrap .bayt-property-results-grid,
	.single-post .post-content-wrap .bayt-property-grid,
	.single-post .post-content-wrap .houzez-properties,
	.single-post .post-content-wrap .listing-view {
		grid-template-columns: 1fr;
	}

	.bayt-compact-header-grid,
	.bayt-contact-route-row {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.bayt-compact-actions {
		justify-content: flex-start;
	}

	.bayt-revamp-lean .bayt-filter-bar {
		grid-template-columns: 1fr 1fr;
	}

	.bayt-revamp-lean .bayt-filter-actions {
		grid-column: 1 / -1;
	}

	.bayt-viewing-actions {
		justify-content: flex-start;
	}

	.bayt-urgent-strip a {
		margin-left: 0;
	}
}

@media (max-width: 560px) {
	.bayt-wrap {
		padding: 0 18px;
	}

	.blog .blog-wrap .container,
	.single-post .blog-wrap .container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.blog .post-inner-wrap {
		padding: 20px 18px 12px;
	}

	.blog .post-footer-wrap {
		padding: 0 18px 20px;
	}

	.single-post .post-content-wrap {
		font-size: 16px;
		line-height: 1.68;
	}

	.bayt-faq {
		padding: 18px;
	}

	.bayt-faq p {
		padding-right: 0;
	}

	.bayt-faq-contact-list {
		grid-template-columns: 1fr;
		padding-right: 0;
	}

	.bayt-faq-icon-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-right: 0;
	}

	.bayt-faq-action {
		width: 100%;
	}

	.bayt-answer-section {
		padding-top: 28px;
	}

	.bayt-answer-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.bayt-answer-actions a {
		justify-content: center;
		width: 100%;
	}

	.bayt-hero h1 {
		font-size: 42px;
	}

	.bayt-lede {
		font-size: 18px;
	}

	.bayt-button {
		width: 100%;
	}

	.bayt-compact-header {
		padding: 16px 0 12px;
	}

	.bayt-compact-header h1 {
		font-size: 26px;
	}

	.bayt-compact-kicker {
		font-size: 11px;
		margin-bottom: 4px;
	}

	.bayt-compact-header p:not(.bayt-compact-kicker) {
		font-size: 14px;
		line-height: 1.35;
	}

	.bayt-compact-header-student-accommodation p:not(.bayt-compact-kicker),
	.bayt-results-summary span {
		display: none;
	}

	.bayt-compact-actions .bayt-button {
		flex: 1 1 0;
		width: auto;
	}

	.bayt-compact-header-about .bayt-compact-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.bayt-compact-header-about .bayt-compact-actions .bayt-button {
		width: 100%;
	}

	.bayt-card-actions a,
	.bayt-contact-route-row .bayt-button {
		width: auto;
	}

	.bayt-revamp-lean .bayt-filter-bar {
		grid-template-columns: 1fr 1fr;
	}

	.bayt-property-browser {
		padding-top: 10px;
	}

	.bayt-property-toolbar {
		padding: 8px;
	}

	.bayt-viewing-form {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.bayt-filter-chips {
		margin-bottom: 8px;
	}

	.bayt-filter-chip {
		padding: 6px 9px;
	}

	.bayt-revamp-lean .bayt-filter-bar {
		gap: 6px;
	}

	.bayt-revamp-lean .bayt-filter-bar label > span {
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	.bayt-revamp-lean .bayt-filter-bar select {
		font-size: 14px;
		min-height: 38px;
		padding: 0 8px;
	}

	.bayt-filter-actions {
		gap: 10px;
	}

	.bayt-filter-actions .bayt-button {
		flex: 1 1 auto;
		min-height: 38px;
	}

	.bayt-filter-chips {
		flex-wrap: wrap;
		overflow-x: visible;
		padding-bottom: 2px;
	}

	.bayt-filter-chip {
		flex: 0 1 auto;
	}

	.bayt-link-grid {
		grid-template-columns: 1fr;
	}

	.bayt-section {
		padding: 62px 0;
	}
}

.bayt-repair-route-heading {
	max-width: 720px;
	margin-bottom: 28px;
}

.bayt-repair-route-heading h2,
.bayt-contact-form-intro h2 {
	color: #0f172a;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.08;
	margin: 0;
	text-wrap: balance;
}

.bayt-repair-route-heading p,
.bayt-contact-form-intro p {
	color: #45464d;
	font-size: 17px;
	line-height: 1.65;
	margin: 12px 0 0;
	text-wrap: pretty;
}

.bayt-repair-route-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bayt-repair-route {
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 100%;
	padding: 26px;
}

.bayt-repair-route--urgent {
	background: #9d4300;
	border-color: #9d4300;
}

.bayt-repair-route--routine {
	background: #0f172a;
	border-color: #0f172a;
}

.bayt-route-label {
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 8px;
}

.bayt-repair-route h3,
.bayt-repair-gas-note h3,
.bayt-repair-prep h2,
.bayt-contact-direct h3 {
	color: #0f172a;
	font-size: 23px;
	line-height: 1.18;
	margin: 0;
	text-wrap: balance;
}

.bayt-repair-route p:not(.bayt-route-label),
.bayt-repair-gas-note p,
.bayt-repair-prep > p,
.bayt-contact-direct p {
	color: #45464d;
	line-height: 1.6;
	margin: 12px 0 0;
}

.bayt-repair-route h3,
.bayt-repair-route p:not(.bayt-route-label) {
	color: #ffffff;
}

.bayt-repair-route-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: auto;
}

.bayt-repair-route-actions .bayt-button {
	min-height: 46px;
}

.bayt-repair-route-actions > a:not(.bayt-button) {
	align-self: center;
	color: #ffffff;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-repair-gas-note {
	align-items: center;
	background: #ffdbca;
	border: 1px solid #fd761a;
	border-radius: 12px;
	display: grid;
	gap: 16px 28px;
	grid-template-columns: minmax(0, 1fr) minmax(230px, 0.65fr);
	margin-top: 18px;
	padding: 18px 22px;
}

.bayt-repair-gas-note h3 {
	font-size: 19px;
}

.bayt-repair-gas-note p {
	color: #5c2400;
	margin-top: 6px;
}

.bayt-repair-gas-note a {
	color: #0f172a;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bayt-repair-gas-note > p {
	justify-self: end;
	max-width: 30ch;
}

.bayt-repair-ticket-section {
	margin-top: 38px;
	scroll-margin-top: 24px;
}

.bayt-repair-ticket-layout {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.bayt-repair-ticket-layout .bayt-ticket-panel,
.bayt-repair-prep {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	padding: clamp(20px, 3vw, 32px);
}

.bayt-repair-ticket-layout .bayt-ticket-panel {
	margin: 0;
}

.bayt-ticket-panel .bayt-panel-head {
	border-bottom: 1px solid #e4e2e4;
	margin-bottom: 24px;
	padding-bottom: 20px;
}

.bayt-ticket-panel .bayt-panel-head h2 {
	color: #0f172a;
	font-size: 29px;
	line-height: 1.12;
	margin: 0;
	text-wrap: balance;
}

.bayt-ticket-panel .bayt-panel-head p:not(.bayt-route-label) {
	color: #45464d;
	line-height: 1.6;
	margin: 10px 0 0;
}

.bayt-repair-prep {
	background: #f6f3f5;
}

.bayt-repair-prep ol {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 22px 0;
	padding: 0;
}

.bayt-repair-prep li {
	align-items: flex-start;
	display: grid;
	gap: 10px;
	grid-template-columns: 28px minmax(0, 1fr);
}

.bayt-repair-prep li > span {
	align-items: center;
	background: #0f172a;
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	line-height: 1;
	width: 28px;
}

.bayt-repair-prep li strong {
	color: #0f172a;
}

.bayt-repair-prep li p {
	color: #45464d;
	font-size: 14px;
	line-height: 1.5;
	margin: 3px 0 0;
}

.bayt-repair-prep .bayt-button {
	width: 100%;
}

.bayt-repair-prep-note {
	color: #5c2400 !important;
	font-size: 14px;
	font-weight: 700;
	margin-top: 16px !important;
}

.bayt-contact-direct-links a:focus-visible {
	outline: 3px solid #fd761a;
	outline-offset: 3px;
}

.bayt-contact-direct {
	align-items: center;
	background: #ffdbca;
	border-radius: 12px;
	display: grid;
	gap: 18px 28px;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	margin-top: 18px;
	padding: 22px 24px;
}

.bayt-contact-direct h3 {
	font-size: 21px;
}

.bayt-contact-direct p {
	color: #5c2400;
	margin-top: 6px;
}

.bayt-contact-direct-links {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bayt-contact-direct-links a {
	color: #0f172a;
	display: grid;
	font-weight: 800;
	gap: 3px;
	min-width: 0;
	overflow-wrap: anywhere;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-contact-direct-links span {
	color: #5c2400;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.bayt-contact-form-section {
	background: #f6f3f5;
	scroll-margin-top: 24px;
}

.bayt-contact-form-shell {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	padding: clamp(22px, 4vw, 44px);
}

.bayt-contact-form-intro {
	border-bottom: 1px solid #e4e2e4;
	margin-bottom: 28px;
	max-width: 65ch;
	padding-bottom: 24px;
}

.bayt-contact-form-intro p:last-child {
	font-size: 15px;
}

.bayt-contact-form-intro a {
	color: #0f172a;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bayt-contact-form {
	display: grid;
	gap: 24px;
}

.bayt-contact-form-fields {
	display: grid;
	gap: 18px 22px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bayt-contact-form-field {
	display: grid;
	gap: 8px;
}

.bayt-contact-form-field--message {
	grid-column: 1 / -1;
}

.bayt-contact-form-field__label {
	color: #1b1b1d;
	font-size: 14px;
	font-weight: 800;
}

.bayt-contact-form-field__input {
	appearance: none;
	background: #ffffff;
	border: 1px solid #76777d;
	border-radius: 8px;
	color: #1b1b1d;
	font: inherit;
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.bayt-contact-form-field__input::placeholder {
	color: #4a4a4a;
	opacity: 1;
}

.bayt-contact-form-field select.bayt-contact-form-field__input {
	background-image: linear-gradient(45deg, transparent 50%, #0f172a 50%), linear-gradient(135deg, #0f172a 50%, transparent 50%);
	background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 40px;
}

.bayt-contact-form-field textarea.bayt-contact-form-field__input {
	min-height: 170px;
	resize: vertical;
}

.bayt-contact-form-field__input:focus {
	border-color: #9d4300;
	box-shadow: 0 0 0 3px rgba(157, 67, 0, 0.2);
	outline: none;
}

.bayt-contact-form-actions {
	align-items: center;
	display: grid;
	gap: 14px 22px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.bayt-contact-form-note,
.bayt-contact-form .bayt-form-status {
	color: #45464d;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.bayt-contact-form .bayt-form-status {
	grid-column: 1 / -1;
	min-height: 21px;
}

.bayt-contact-form-actions .bayt-button {
	min-width: 180px;
}

@media (max-width: 900px) {
	.bayt-repair-ticket-layout,
	.bayt-contact-direct {
		grid-template-columns: 1fr;
	}

	.bayt-contact-direct-links {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.bayt-repair-route-grid,
	.bayt-contact-form-fields,
	.bayt-contact-direct-links {
		grid-template-columns: 1fr;
	}

	.bayt-repair-gas-note {
		grid-template-columns: 1fr;
	}

	.bayt-repair-gas-note > p {
		justify-self: start;
		max-width: none;
	}

	.bayt-contact-form-actions {
		grid-template-columns: 1fr;
	}

	.bayt-contact-form-actions .bayt-button {
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 520px) {
	.bayt-repair-route,
	.bayt-contact-direct,
	.bayt-repair-gas-note {
		padding: 20px;
	}

	.bayt-repair-route-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bayt-repair-route-actions > a:not(.bayt-button) {
		align-self: flex-start;
	}
}

/* Google reviews page */
.bayt-reviews-intro {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 28px;
}

.bayt-reviews-intro > div {
	max-width: 720px;
}

.bayt-reviews-intro h2 {
	color: #0f172a;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.08;
	margin: 0;
	text-wrap: balance;
}

.bayt-reviews-intro p {
	color: #45464d;
	font-size: 17px;
	line-height: 1.65;
	margin: 12px 0 0;
	text-wrap: pretty;
}

.bayt-reviews-intro .bayt-button {
	flex: 0 0 auto;
}

.bayt-reviews-overall {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 7px 10px;
	margin-top: 16px;
}

.bayt-reviews-overall__stars {
	color: #9d4300;
	font-size: 21px;
	letter-spacing: 0.08em;
	line-height: 1;
}

.bayt-reviews-overall strong {
	color: #0f172a;
	font-size: 15px;
}

.bayt-reviews-overall > span:last-child {
	color: #54545c;
	font-size: 13px;
}

.bayt-review-grid {
	column-count: 3;
	column-gap: 18px;
}

.bayt-review-card {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	break-inside: avoid;
	display: inline-flex;
	flex-direction: column;
	margin: 0 0 18px;
	min-width: 0;
	padding: 24px;
	width: 100%;
}

.bayt-review-card__stars {
	color: #9d4300;
	font-size: 18px;
	letter-spacing: 0.08em;
	line-height: 1;
}

.bayt-review-card blockquote {
	color: #45464d;
	font-size: 16px;
	font-style: italic;
	line-height: 1.65;
	margin: 18px 0 28px;
}

.bayt-review-card footer {
	align-items: end;
	border-top: 1px solid #e4e2e4;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 16px;
}

.bayt-review-card footer > div {
	display: grid;
	gap: 2px;
}

.bayt-review-card footer strong {
	color: #0f172a;
	font-size: 15px;
}

.bayt-review-card footer span {
	color: #45464d;
	font-size: 13px;
}

.bayt-review-card footer a {
	color: #9d4300;
	font-size: 13px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (max-width: 900px) {
	.bayt-review-grid {
		column-count: 2;
	}
}

@media (max-width: 640px) {
	.bayt-review-grid {
		column-count: 1;
	}

	.bayt-reviews-intro {
		align-items: flex-start;
		flex-direction: column;
	}

	.bayt-reviews-intro .bayt-button {
		width: 100%;
	}
}

/* Interactive laundry-cost comparison. */
.bayt-laundry-calculator-page {
	background: #fcf8fa;
}

.bayt-laundry-calculator-layout {
	align-items: stretch;
	display: grid;
	gap: clamp(24px, 4vw, 52px);
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.bayt-laundry-calculator-controls {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	padding: clamp(24px, 4vw, 42px);
}

.bayt-laundry-calculator-heading h2 {
	color: #0f172a;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.08;
	margin: 0;
	text-wrap: balance;
}

.bayt-laundry-calculator-heading p {
	color: #45464d;
	font-size: 16px;
	line-height: 1.65;
	margin: 14px 0 0;
	max-width: 62ch;
}

.bayt-laundry-fields {
	display: grid;
	gap: 18px 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 30px;
}

.bayt-laundry-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.bayt-laundry-field > span:first-child {
	color: #0f172a;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.bayt-laundry-field input {
	background: #ffffff;
	border: 1px solid #a9a8ad;
	border-radius: 8px;
	color: #0f172a;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
	min-height: 50px;
	padding: 12px 14px;
	width: 100%;
}

.bayt-laundry-field input:focus {
	border-color: #9d4300;
	box-shadow: 0 0 0 3px rgba(157, 67, 0, 0.2);
	outline: 0;
}

.bayt-laundry-money-input {
	align-items: center;
	background: #ffffff;
	border: 1px solid #a9a8ad;
	border-radius: 8px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	min-height: 50px;
	overflow: hidden;
}

.bayt-laundry-money-input:focus-within {
	border-color: #9d4300;
	box-shadow: 0 0 0 3px rgba(157, 67, 0, 0.2);
}

.bayt-laundry-money-input > span {
	color: #45464d;
	font-size: 17px;
	font-weight: 800;
	padding-left: 14px;
}

.bayt-laundry-money-input input {
	border: 0;
	border-radius: 0;
	box-shadow: none !important;
	min-width: 0;
	padding-left: 8px;
}

.bayt-laundry-calculator-note {
	color: #54545c;
	font-size: 13px;
	line-height: 1.55;
	margin: 22px 0 0;
}

.bayt-laundry-result {
	background: #0f172a;
	border-radius: 12px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(28px, 5vw, 52px);
}

.bayt-laundry-result-label {
	color: #ffdbca;
	font-size: 14px;
	font-weight: 800;
	margin: 0;
}

.bayt-laundry-result-total {
	color: #ffffff;
	display: block;
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: clamp(58px, 8vw, 88px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 0.98;
	margin-top: 12px;
}

.bayt-laundry-result-summary {
	color: #f1eef0;
	font-size: 16px;
	line-height: 1.55;
	margin: 14px 0 0;
}

.bayt-laundry-comparison {
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	display: grid;
	gap: 20px;
	margin-top: 28px;
	padding: 24px 0;
}

.bayt-laundry-comparison-row,
.bayt-laundry-comparison-row > div {
	display: grid;
	gap: 8px;
}

.bayt-laundry-comparison-row > div {
	align-items: baseline;
	grid-template-columns: minmax(0, 1fr) auto;
}

.bayt-laundry-comparison-row span {
	color: #f1eef0;
	font-size: 13px;
}

.bayt-laundry-comparison-row strong {
	color: #ffffff;
	font-size: 15px;
}

.bayt-laundry-bar {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	display: block;
	height: 8px;
	overflow: hidden;
}

.bayt-laundry-bar > span {
	border-radius: inherit;
	display: block;
	height: 100%;
}

.bayt-laundry-bar-paid {
	background: #fd761a;
	width: 100%;
}

.bayt-laundry-bar-bayt {
	background: #ffffff;
	width: 4px;
}

.bayt-laundry-result-disclaimer {
	color: #d8d5d7;
	font-size: 12px;
	line-height: 1.55;
	margin: 20px 0;
}

.bayt-laundry-result .bayt-button {
	align-self: flex-start;
	background: #ffffff;
	border-color: #ffffff;
	color: #0f172a;
}

.bayt-laundry-result .bayt-button:hover,
.bayt-laundry-result .bayt-button:focus {
	background: #ffdbca;
	border-color: #ffdbca;
}

@media (max-width: 900px) {
	.bayt-laundry-calculator-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.bayt-laundry-fields {
		grid-template-columns: 1fr;
	}

	.bayt-laundry-result .bayt-button {
		width: 100%;
	}
}

/* Joined, single-open FAQ rows inspired by the requested Origin UI pattern. */
.bayt-faq-list,
.bayt-property-faqs__list,
.bayt-blog-faq-list {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	display: grid;
	gap: 0;
	overflow: hidden;
}

.bayt-faq,
.bayt-property-faq,
.bayt-blog-faq {
	background: #ffffff;
	border: 0;
	border-bottom: 1px solid #d9d7da;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	padding: 0;
	transition: background-color 180ms ease-out;
}

.bayt-faq:last-child,
.bayt-property-faq:last-child,
.bayt-blog-faq:last-child {
	border-bottom: 0;
}

.bayt-faq[open],
.bayt-property-faq[open],
.bayt-blog-faq[open] {
	background: #fcf8fa;
	border-color: #d9d7da;
	box-shadow: none;
}

.bayt-faq summary,
.bayt-property-faq summary,
.bayt-blog-faq summary {
	align-items: center;
	color: #0f172a;
	cursor: pointer;
	display: flex;
	font-size: 17px;
	font-weight: 800;
	gap: 18px;
	justify-content: space-between;
	line-height: 1.4;
	list-style: none;
	padding: 18px 20px;
}

.bayt-faq summary::-webkit-details-marker,
.bayt-property-faq summary::-webkit-details-marker,
.bayt-blog-faq summary::-webkit-details-marker {
	display: none;
}

.bayt-faq summary::after,
.bayt-property-faq summary::after,
.bayt-blog-faq summary::after {
	align-items: center;
	background: #ffffff;
	border: 1px solid #b9b7bc;
	border-radius: 999px;
	color: #0f172a;
	content: "+";
	display: inline-flex;
	flex: 0 0 30px;
	font-size: 20px;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	line-height: 1;
	width: 30px;
}

.bayt-faq[open] summary::after,
.bayt-property-faq[open] summary::after,
.bayt-blog-faq[open] summary::after {
	background: #0f172a;
	border-color: #0f172a;
	color: #ffffff;
	content: "−";
}

.bayt-faq > p,
.bayt-property-faq > p,
.bayt-blog-faq__content {
	color: #45464d;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	padding: 0 68px 20px 20px;
}

.bayt-blog-faq__content > :first-child {
	margin-top: 0;
}

.bayt-blog-faq__content > :last-child {
	margin-bottom: 0;
}

.bayt-faq .bayt-faq-contact-list,
.bayt-faq .bayt-faq-icon-list {
	margin: 0 20px 20px;
	padding-right: 48px;
}

.bayt-faq .bayt-faq-action {
	margin: 0 20px 20px;
}

@media (max-width: 560px) {
	.bayt-faq,
	.bayt-property-faq,
	.bayt-blog-faq {
		padding: 0;
	}

	.bayt-faq summary,
	.bayt-property-faq summary,
	.bayt-blog-faq summary {
		font-size: 16px;
		padding: 16px;
	}

	.bayt-faq > p,
	.bayt-property-faq > p,
	.bayt-blog-faq__content {
		padding: 0 16px 18px;
	}

	.bayt-faq .bayt-faq-contact-list,
	.bayt-faq .bayt-faq-icon-list,
	.bayt-faq .bayt-faq-action {
		margin: 0 16px 18px;
		padding-right: 0;
	}
}

/* Houzez/Bootstrap must not tint the universal chrome on editorial pages. */
body.blog > header,
body.blog > footer,
body.archive > header,
body.archive > footer,
body.single-post > header,
body.single-post > footer {
	background-color: #fffbff !important;
	border-color: #c6c6cd !important;
}

/* Property filters: primary fields first, availability and amenity pills below. */
.bayt-property-toolbar .bayt-filter-bar {
	margin-bottom: 12px;
}

.bayt-filter-secondary-row {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	position: relative;
}

.bayt-filter-secondary-row .bayt-filter-chips {
	flex: 1 1 auto;
	margin: 0;
}

.bayt-filter-secondary-row .bayt-filter-chip,
.bayt-amenity-filters > summary,
.bayt-amenity-options label {
	align-items: center;
	border: 1px solid #c6c6cd;
	border-radius: 999px;
	box-sizing: border-box;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	padding: 9px 14px;
}

.bayt-amenity-filters {
	flex: 0 0 auto;
	position: relative;
}

.bayt-amenity-filters > summary {
	background: transparent;
	border: 0;
	color: #0f172a;
	list-style: none;
	padding: 0;
	width: 44px;
}

.bayt-amenity-filters > summary::-webkit-details-marker {
	display: none;
}

.bayt-amenity-filters > summary svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 22px;
}

.bayt-amenity-filters > summary .screen-reader-text {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bayt-amenity-filters[open] > summary {
	background: #f0edef;
	color: #0f172a;
}

.bayt-amenity-filters fieldset {
	background: #ffffff;
	border: 1px solid #c6c6cd;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
	margin: 8px 0 0;
	min-width: min(520px, calc(100vw - 48px));
	padding: 16px;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 50;
}

.bayt-amenity-options input {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bayt-amenity-options label {
	background: #ffffff;
	color: #0f172a;
	cursor: pointer;
	padding: 9px 13px;
}

.bayt-amenity-options label:has(input:checked) {
	background: #0f172a;
	border-color: #0f172a;
	color: #ffffff;
}

.bayt-amenity-options label:has(input:focus-visible) {
	outline: 3px solid #fd761a;
	outline-offset: 2px;
}

/* Property detail gallery: Airbnb-style 50/25/25 composition. */
.bayt-property-detail .bayt-property-gallery {
	margin: 0 0 32px;
	max-width: none;
	padding: 18px 0 0;
	transform: none;
	width: 100%;
}

.bayt-property-detail .bayt-property-gallery__grid {
	aspect-ratio: 2.65 / 1;
	border-radius: 16px;
	gap: 8px;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	overflow: hidden;
}

.bayt-property-detail .bayt-property-gallery__item {
	border-radius: 0;
	min-height: 0;
}

.bayt-property-detail .bayt-property-gallery__all {
	bottom: 18px;
	right: 18px;
}

.bayt-property-detail .bayt-property-hero {
	padding-bottom: 14px;
}

.bayt-property-detail .bayt-property-breadcrumbs {
	font-size: 13px;
	margin-bottom: 8px;
}

.bayt-property-detail .bayt-property-hero h1 {
	font-size: clamp(28px, 2.7vw, 36px);
	letter-spacing: -0.025em;
	line-height: 1.1;
	max-width: 720px;
}

.bayt-property-detail .bayt-detail-booking-card__top h2 {
	font-size: 22px;
	line-height: 1.12;
}

.bayt-property-detail .bayt-property-hero__label {
	margin-top: 9px;
}

.bayt-property-detail .bayt-property-hero__meta {
	margin-top: 6px;
}

/* Make the viewing surface unmistakably actionable beside the content. */
.bayt-property-detail .bayt-detail-booking-card {
	background: #fffbff;
	border: 1px solid #d9d7da;
	box-shadow: none;
}

.bayt-property-detail .bayt-booking-inline {
	border-top: 2px solid rgba(161, 90, 36, 0.22);
	padding-top: 20px;
}

.bayt-property-detail .bayt-booking-inline > h3 {
	color: #1b1b1d;
	font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
	font-size: 21px;
	letter-spacing: 0;
	margin-bottom: 16px;
	text-transform: none;
}

.bayt-booking-step h3.bayt-booking-step__heading {
	align-items: center;
	color: #686a72;
	display: flex;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 13px;
	font-weight: 800;
	gap: 10px;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0 0 2px;
	text-transform: none;
}

.bayt-booking-step[data-booking-step="appointment"] > h3 {
	color: #686a72;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0 0 2px;
	text-transform: none;
}

.bayt-booking-back-icon {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 4px;
	color: #686a72;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 28px;
	font-size: 18px;
	height: 28px;
	justify-content: center;
	padding: 0;
	width: 28px;
}

.bayt-booking-back-icon:hover,
.bayt-booking-back-icon:focus {
	background: #f0edef;
	color: #0f172a;
}

.bayt-booking-back-icon:focus-visible {
	outline: 3px solid #fd761a;
	outline-offset: 2px;
}

.bayt-booking-step__actions {
	grid-template-columns: 1fr;
}

.bayt-booking-step__actions .bayt-booking-submit {
	width: 100%;
}

@media (max-width: 820px) {
	.bayt-filter-secondary-row {
		align-items: stretch;
	}

	.bayt-property-detail .bayt-property-gallery {
		width: 100%;
	}

	.bayt-property-detail .bayt-property-gallery__grid {
		aspect-ratio: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}
}

@media (max-width: 560px) {
	.bayt-filter-secondary-row {
		align-items: center;
		flex-wrap: nowrap;
	}

	.bayt-filter-secondary-row .bayt-filter-chips {
		flex-basis: auto;
		flex-wrap: nowrap;
		gap: 4px;
		min-width: 0;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.bayt-filter-secondary-row .bayt-filter-chip {
		flex: 0 0 auto;
		font-size: 11px;
		padding: 8px 10px;
		white-space: nowrap;
	}

	.bayt-amenity-filters fieldset {
		min-width: calc(100vw - 40px);
	}

	.bayt-property-detail .bayt-property-gallery {
		margin-bottom: 28px;
		padding-top: 10px;
	}

	.bayt-property-detail .bayt-property-hero h1 {
		font-size: 28px;
		line-height: 1.12;
	}

	.bayt-property-detail .bayt-property-gallery__grid {
		aspect-ratio: 16 / 10;
		display: block;
	}

	.bayt-property-detail .bayt-property-gallery__item--1 {
		aspect-ratio: 16 / 10;
		display: block;
		height: 100%;
	}

	.bayt-property-detail .bayt-property-gallery__item:nth-child(n+2) {
		display: none;
	}
}
