/* ==========================================================================
   HorseBack Hotel — Main Stylesheet
   Design tokens are defined in style.css (:root) and overridden live by the
   Customizer (see inc/customizer/output-css.php). Never hard-code colours
   or fonts here — always reference the var(--hbh-*) custom properties.
   ========================================================================== */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--hbh-color-bg);
	color: var(--hbh-color-text);
	font-family: var(--hbh-font-body);
	font-size: var(--hbh-font-size-base);
	line-height: var(--hbh-line-height-base);
	overflow-x: hidden;
}

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

a { color: var(--hbh-color-cta); text-decoration: none; transition: color var(--hbh-transition); }
a:hover { color: var(--hbh-color-cta-hover); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hbh-font-heading);
	color: var(--hbh-color-primary);
	line-height: 1.2;
	margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.25em; }

button { font-family: inherit; cursor: pointer; }

/* ---- Focus states: accessibility requirement — visible, high-contrast ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.hbh-faq__trigger:focus-visible {
	outline: 3px solid var(--hbh-color-cta);
	outline-offset: 2px;
}

/* ---- Skip link ---- */
.hbh-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--hbh-color-black);
	color: var(--hbh-color-white);
	padding: 12px 20px;
	z-index: 10000;
	font-weight: 600;
}
.hbh-skip-link:focus {
	left: 12px;
	top: 12px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

/* ---- Layout ---- */
.hbh-container {
	max-width: var(--hbh-container-width);
	margin: 0 auto;
	padding: 0 var(--hbh-container-padding);
}

.hbh-section {
	padding: 72px 24px;
	max-width: var(--hbh-container-width);
	margin: 0 auto;
}
.hbh-section--alt-bg { background: var(--hbh-color-bg-alt); max-width: none; }
.hbh-section--alt-bg > * { max-width: var(--hbh-container-width); margin-left: auto; margin-right: auto; }

.hbh-section-heading { text-align: center; margin-bottom: 40px; }
.hbh-section-heading h2 { font-size: 32px; }
.hbh-section-heading p { color: var(--hbh-color-secondary); max-width: 560px; margin: 0.5em auto 0; }

.hbh-page-header { padding-top: 32px; }
.hbh-page-title { padding: 24px 0 40px; text-align: center; }
.hbh-page-title h1 { font-size: 40px; }

.hbh-admin-notice {
	background: #fff8e5;
	border: 1px solid #e0c266;
	color: #6b5500;
	padding: 16px 20px;
	border-radius: var(--hbh-radius-md);
	margin: 16px 0;
	font-size: 14px;
}

/* ---- Buttons ---- */
.hbh-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: var(--hbh-radius-sm);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.3px;
	text-align: center;
	transition: background-color var(--hbh-transition), color var(--hbh-transition), border-color var(--hbh-transition);
	border: 2px solid transparent;
	cursor: pointer;
}
.hbh-btn--cta,
.hbh-btn--cta a,
a.hbh-btn--cta {
	background: var(--hbh-color-cta);
	color: var(--hbh-color-white) !important;
}
.hbh-btn--cta:hover, a.hbh-btn--cta:hover { background: var(--hbh-color-cta-hover); color: var(--hbh-color-white) !important; }

.hbh-btn--outline,
a.hbh-btn--outline {
	background: transparent;
	border-color: var(--hbh-color-white);
	color: var(--hbh-color-white) !important;
}
.hbh-btn--outline:hover { background: var(--hbh-color-white); color: var(--hbh-color-black) !important; }

.hbh-btn--outline-dark,
a.hbh-btn--outline-dark {
	background: transparent;
	border-color: var(--hbh-color-black);
	color: var(--hbh-color-black) !important;
}
.hbh-btn--outline-dark:hover { background: var(--hbh-color-black); color: var(--hbh-color-white) !important; }

/* Ensure core Buttons block link element always inherits properly inside our wrappers */
.wp-block-button.hbh-btn .wp-block-button__link { padding: 14px 32px; }

/* ==========================================================================
   Header
   ========================================================================== */
.hbh-header {
	background: var(--hbh-color-white);
	border-bottom: 1px solid var(--hbh-color-border);
	position: relative;
	z-index: 100;
}
.hbh-header--sticky { position: sticky; top: 0; }
.hbh-header--transparent {
	background: transparent;
	border-bottom-color: transparent;
	position: absolute;
	width: 100%;
}
.hbh-header--transparent .hbh-header__site-title,
.hbh-header--transparent .hbh-nav-menu > li > a { color: var(--hbh-color-white); }
.hbh-header--transparent .hbh-nav-toggle__bar { background: var(--hbh-color-white); }

.hbh-header__inner {
	max-width: var(--hbh-container-width);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.hbh-header__branding img { max-height: var(--hbh-logo-height, 56px); width: auto; }
.hbh-header__site-title {
	font-family: var(--hbh-font-heading);
	font-size: 24px;
	font-weight: 700;
	color: var(--hbh-color-black);
}

.hbh-nav-menu { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.hbh-nav-menu > li { position: relative; }
.hbh-nav-menu > li > a {
	font-weight: 500;
	font-size: 15px;
	color: var(--hbh-color-black);
}
.hbh-nav-menu > li > a[aria-current="page"] { color: var(--hbh-color-cta); }

.hbh-nav-menu ul {
	list-style: none;
	position: absolute;
	top: 100%; left: 0;
	background: var(--hbh-color-white);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	min-width: 200px;
	padding: 8px 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--hbh-transition), transform var(--hbh-transition), visibility var(--hbh-transition);
}
.hbh-nav-menu li:hover > ul,
.hbh-nav-menu li:focus-within > ul {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.hbh-nav-menu ul li a { display: block; padding: 10px 20px; color: var(--hbh-color-black); }

.hbh-header__actions { display: flex; align-items: center; gap: 16px; }
.hbh-header__cta { padding: 12px 24px; font-size: 14px; }

.hbh-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
}
.hbh-nav-toggle__bar { width: 24px; height: 2px; background: var(--hbh-color-black); transition: transform var(--hbh-transition), opacity var(--hbh-transition); }
.hbh-nav-toggle[aria-expanded="true"] .hbh-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbh-nav-toggle[aria-expanded="true"] .hbh-nav-toggle__bar:nth-child(2) { opacity: 0; }
.hbh-nav-toggle[aria-expanded="true"] .hbh-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hbh-mobile-nav {
	display: none;
	background: var(--hbh-color-white);
	padding: 24px;
	border-top: 1px solid var(--hbh-color-border);
}
.hbh-mobile-nav.is-open { display: block; }
.hbh-mobile-nav__menu { list-style: none; margin: 0 0 20px; padding: 0; }
.hbh-mobile-nav__menu li { border-bottom: 1px solid var(--hbh-color-border); }
.hbh-mobile-nav__menu a { display: block; padding: 14px 0; font-weight: 500; color: var(--hbh-color-black); }
.hbh-mobile-nav__menu ul { list-style: none; padding-left: 16px; }
.hbh-mobile-nav__cta { display: block; text-align: center; }

@media (max-width: 900px) {
	.hbh-header__nav { display: none; }
	.hbh-header__cta { display: none; }
	.hbh-nav-toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hbh-hero.wp-block-cover { margin: 0; }
.hbh-hero .wp-block-cover__inner-container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   Booking Widget
   ========================================================================== */
.hbh-booking-widget {
	background: var(--hbh-color-white);
	border: 1px solid var(--hbh-color-border);
	border-radius: var(--hbh-radius-md);
	box-shadow: 0 20px 50px rgba(0,0,0,0.08);
	padding: 32px;
	margin: -60px auto 0;
	position: relative;
	z-index: 10;
	max-width: 1100px;
}
.hbh-booking-widget__heading { font-size: 20px; margin-bottom: 20px; text-align: center; }
.hbh-booking-widget__fields {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.4fr auto;
	gap: 16px;
	align-items: end;
}
.hbh-booking-widget__field { display: flex; flex-direction: column; gap: 6px; }
.hbh-booking-widget__field label { font-size: 13px; font-weight: 600; color: var(--hbh-color-secondary); }
.hbh-booking-widget__field input,
.hbh-booking-widget__field select {
	padding: 12px 14px;
	border: 1px solid var(--hbh-color-border);
	border-radius: var(--hbh-radius-sm);
	font-size: 15px;
	font-family: inherit;
	background: var(--hbh-color-white);
}
.hbh-booking-widget__field--submit .hbh-btn { width: 100%; padding: 13px 20px; }
.hbh-booking-widget__result[hidden] { display: none; }
.hbh-booking-widget__cf7-container[hidden] { display: none; }
.hbh-booking-widget__embed iframe { border-radius: var(--hbh-radius-md); }

@media (max-width: 1000px) {
	.hbh-booking-widget__fields { grid-template-columns: repeat(2, 1fr); }
	.hbh-booking-widget { margin-top: -40px; padding: 24px; }
}
@media (max-width: 600px) {
	.hbh-booking-widget__fields { grid-template-columns: 1fr; }
	.hbh-booking-widget { margin-top: 24px; }
}

/* ==========================================================================
   Room Cards / Grid
   ========================================================================== */
.hbh-room-grid__cards, .hbh-room-grid.wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}
.hbh-room-card {
	background: var(--hbh-color-white);
	border: 1px solid var(--hbh-color-border);
	border-radius: var(--hbh-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--hbh-transition), transform var(--hbh-transition);
}
.hbh-room-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.hbh-room-card__image-link { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--hbh-color-grey-light); }
.hbh-room-card__image-link img { width: 100%; height: 100%; object-fit: cover; }
.hbh-room-card__image-placeholder { width: 100%; height: 100%; background: var(--hbh-color-grey-light); }
.hbh-room-card__badge {
	position: absolute; top: 12px; left: 12px;
	font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
	padding: 6px 12px; border-radius: 20px; color: var(--hbh-color-white);
}
.hbh-room-card__badge--unavailable { background: var(--hbh-color-accent); }
.hbh-room-card__badge--limited { background: #b8860b; }
.hbh-room-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.hbh-room-card__title { font-size: 20px; margin-bottom: 6px; }
.hbh-room-card__title a { color: var(--hbh-color-black); }
.hbh-room-card__price { font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.hbh-room-card__price span { font-weight: 400; font-size: 13px; color: var(--hbh-color-secondary); }
.hbh-room-card__meta { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--hbh-color-secondary); margin-bottom: 12px; }
.hbh-room-card__meta li { border-right: 1px solid var(--hbh-color-border); padding-right: 10px; }
.hbh-room-card__meta li:last-child { border-right: none; }
.hbh-room-card__excerpt { font-size: 14px; color: var(--hbh-color-secondary); }
.hbh-room-card__amenities { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hbh-room-card__amenities li { font-size: 12px; background: var(--hbh-color-grey-light); padding: 5px 10px; border-radius: 20px; }
.hbh-room-card__cta { margin-top: auto; }

/* ==========================================================================
   Offer Cards / Grid
   ========================================================================== */
.hbh-offers__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}
.hbh-offer-card { background: var(--hbh-color-white); border: 1px solid var(--hbh-color-border); border-radius: var(--hbh-radius-md); overflow: hidden; display: flex; flex-direction: column; }
.hbh-offer-card__image-link { display: block; aspect-ratio: 8/5; overflow: hidden; background: var(--hbh-color-grey-light); }
.hbh-offer-card__image-link img { width: 100%; height: 100%; object-fit: cover; }
.hbh-offer-card__image-placeholder { width: 100%; height: 100%; background: var(--hbh-color-grey-light); }
.hbh-offer-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.hbh-offer-card__title { font-size: 20px; margin-bottom: 8px; }
.hbh-offer-card__title a { color: var(--hbh-color-black); }
.hbh-offer-card__excerpt { font-size: 14px; color: var(--hbh-color-secondary); }
.hbh-offer-card__validity { font-size: 13px; font-weight: 600; color: var(--hbh-color-cta); margin-bottom: 16px; }
.hbh-offer-card__body .hbh-btn { margin-top: auto; }

/* ==========================================================================
   Facilities
   ========================================================================== */
.hbh-facilities__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}
.hbh-facility-card { text-align: center; padding: 24px; border: 1px solid var(--hbh-color-border); border-radius: var(--hbh-radius-md); }
.hbh-facility-card__image { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--hbh-radius-sm); margin-bottom: 16px; }
.hbh-facility-card__image img { width: 100%; height: 100%; object-fit: cover; }
.hbh-facility-card__icon { font-size: 32px; color: var(--hbh-color-cta); margin-bottom: 12px; }
.hbh-facility-card__icon .dashicons { width: 32px; height: 32px; font-size: 32px; }
.hbh-facility-card__title { font-size: 18px; margin-bottom: 8px; }
.hbh-facility-card__desc { font-size: 14px; color: var(--hbh-color-secondary); margin: 0; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.hbh-gallery__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.hbh-gallery__filter {
	background: transparent; border: 1px solid var(--hbh-color-border);
	padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
	color: var(--hbh-color-secondary);
}
.hbh-gallery__filter.is-active, .hbh-gallery__filter:hover { background: var(--hbh-color-black); color: var(--hbh-color-white); border-color: var(--hbh-color-black); }
.hbh-gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.hbh-gallery__item { position: relative; margin: 0; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--hbh-radius-sm); }
.hbh-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.hbh-gallery__item:hover img { transform: scale(1.05); }
.hbh-gallery__item.is-hidden { display: none; }
.hbh-gallery__item figcaption {
	position: absolute; bottom: 0; left: 0; right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: var(--hbh-color-white); font-size: 13px; padding: 24px 12px 10px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.hbh-testimonials__carousel { position: relative; }
.hbh-testimonials__track { display: flex; overflow: hidden; gap: 24px; scroll-behavior: smooth; }
.hbh-testimonial-card {
	flex: 0 0 100%;
	margin: 0;
	background: var(--hbh-color-white);
	border: 1px solid var(--hbh-color-border);
	border-radius: var(--hbh-radius-md);
	padding: 32px;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}
.hbh-testimonial-card[aria-hidden="true"] { display: none; }
.hbh-testimonial-card__rating { color: var(--hbh-color-cta); display: flex; justify-content: center; gap: 2px; margin-bottom: 16px; }
.hbh-testimonial-card__text { font-size: 18px; font-style: italic; margin-bottom: 20px; }
.hbh-testimonial-card__footer { display: flex; align-items: center; justify-content: center; gap: 12px; }
.hbh-testimonial-card__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.hbh-testimonial-card__name { font-weight: 700; font-style: normal; display: block; }
.hbh-testimonial-card__country { font-size: 13px; color: var(--hbh-color-secondary); }
.hbh-testimonials__controls { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.hbh-testimonials__prev, .hbh-testimonials__next {
	background: var(--hbh-color-white); border: 1px solid var(--hbh-color-border);
	width: 44px; height: 44px; border-radius: 50%; font-size: 18px;
}
.hbh-testimonials__prev:hover, .hbh-testimonials__next:hover { background: var(--hbh-color-black); color: var(--hbh-color-white); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.hbh-faq__list { max-width: 800px; margin: 0 auto; }
.hbh-faq__item { border-bottom: 1px solid var(--hbh-color-border); }
.hbh-faq__question { margin: 0; }
.hbh-faq__trigger {
	width: 100%; display: flex; justify-content: space-between; align-items: center;
	background: none; border: none; padding: 20px 4px; text-align: left;
	font-size: 17px; font-weight: 600; color: var(--hbh-color-black);
}
.hbh-faq__icon { transition: transform var(--hbh-transition); flex-shrink: 0; margin-left: 16px; }
.hbh-faq__trigger[aria-expanded="true"] .hbh-faq__icon { transform: rotate(180deg); }
.hbh-faq__answer { padding: 0 4px 20px; color: var(--hbh-color-secondary); }
.hbh-faq__answer[hidden] { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.hbh-footer { background: var(--hbh-color-black); color: var(--hbh-color-white); }
.hbh-footer__inner { max-width: var(--hbh-container-width); margin: 0 auto; padding: 0 24px; }
.hbh-footer__pre-footer { padding: 64px 0 40px; }
.hbh-footer__columns { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.hbh-footer__logo img { max-height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.hbh-footer__site-title { font-family: var(--hbh-font-heading); font-size: 22px; margin-bottom: 16px; }
.hbh-footer__description { color: #cfcfcf; font-size: 14px; }
.hbh-footer__socials { list-style: none; display: flex; gap: 12px; padding: 0; margin: 20px 0 0; }
.hbh-footer__socials a { color: var(--hbh-color-white); opacity: 0.8; }
.hbh-footer__socials a:hover { opacity: 1; color: var(--hbh-color-accent); }
.hbh-footer-widget-title { color: var(--hbh-color-white); font-size: 16px; margin-bottom: 16px; }
.hbh-footer__menu, .hbh-footer__contact-list { list-style: none; padding: 0; margin: 0; }
.hbh-footer__menu li, .hbh-footer__contact-list li { margin-bottom: 10px; font-size: 14px; }
.hbh-footer__menu a, .hbh-footer__contact-list a { color: #cfcfcf; }
.hbh-footer__menu a:hover, .hbh-footer__contact-list a:hover { color: var(--hbh-color-white); }
.hbh-footer__hours { font-size: 14px; color: #cfcfcf; white-space: pre-line; }
.hbh-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.hbh-footer__bottom .hbh-footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.hbh-footer__copyright { margin: 0; font-size: 13px; color: #9a9a9a; }
.hbh-footer__legal-menu { list-style: none; display: flex; gap: 20px; padding: 0; margin: 0; }
.hbh-footer__legal-menu a { font-size: 13px; color: #9a9a9a; }
.hbh-footer__legal-menu a:hover { color: var(--hbh-color-white); }

@media (max-width: 900px) {
	.hbh-footer__columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.hbh-footer__columns { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.hbh-whatsapp-float {
	position: fixed; bottom: 24px; right: 24px; z-index: 999;
	width: 56px; height: 56px; border-radius: 50%;
	background: #25D366; color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
	transition: transform var(--hbh-transition);
}
.hbh-whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ==========================================================================
   Single Room / Offer / Post
   ========================================================================== */
.hbh-single-room__header, .hbh-single-offer__header { text-align: center; padding: 24px 24px 0; }
.hbh-single-room__price { font-size: 22px; font-weight: 700; color: var(--hbh-color-cta); }
.hbh-single-room__hero-image, .hbh-single-offer__hero-image { max-width: var(--hbh-container-width); margin: 24px auto; border-radius: var(--hbh-radius-md); overflow: hidden; }
.hbh-single-room__hero-image img, .hbh-single-offer__hero-image img { width: 100%; max-height: 520px; object-fit: cover; }
.hbh-single-room__layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.hbh-single-room__sidebar { position: sticky; top: 100px; border: 1px solid var(--hbh-color-border); border-radius: var(--hbh-radius-md); padding: 24px; }
.hbh-single-room__fact { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--hbh-color-border); font-size: 14px; }
.hbh-single-room__fact-label { color: var(--hbh-color-secondary); }
.hbh-single-room__amenities ul { list-style: none; padding: 0; margin: 12px 0 24px; }
.hbh-single-room__amenities li { font-size: 14px; padding: 4px 0; }
.hbh-single-room__cta { display: block; text-align: center; width: 100%; }
.hbh-single-room__gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 16px; }
.hbh-single-room__gallery-grid img { border-radius: var(--hbh-radius-sm); aspect-ratio: 4/3; object-fit: cover; }
.hbh-single-offer__terms { background: var(--hbh-color-grey-light); padding: 20px; border-radius: var(--hbh-radius-md); margin: 24px 0; }

@media (max-width: 900px) {
	.hbh-single-room__layout { grid-template-columns: 1fr; }
	.hbh-single-room__sidebar { position: static; }
}

/* ==========================================================================
   Blog post list / cards
   ========================================================================== */
.hbh-post-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin: 32px 0; }
.hbh-post-card { border: 1px solid var(--hbh-color-border); border-radius: var(--hbh-radius-md); overflow: hidden; }
.hbh-post-card__image-link { display: block; aspect-ratio: 8/5; background: var(--hbh-color-grey-light); overflow: hidden; }
.hbh-post-card__image-link img { width: 100%; height: 100%; object-fit: cover; }
.hbh-post-card__image-placeholder { width: 100%; height: 100%; background: var(--hbh-color-grey-light); }
.hbh-post-card__body { padding: 20px; }
.hbh-post-card__date { font-size: 13px; color: var(--hbh-color-secondary); margin-bottom: 6px; }
.hbh-post-card__title { font-size: 20px; margin-bottom: 8px; }
.hbh-post-card__title a { color: var(--hbh-color-black); }
.hbh-post-card__excerpt { font-size: 14px; color: var(--hbh-color-secondary); }
.hbh-post-card__readmore { font-weight: 600; font-size: 14px; }

/* ==========================================================================
   404 / No content / Search
   ========================================================================== */
.hbh-404, .hbh-no-content { text-align: center; padding: 80px 24px; max-width: 600px; margin: 0 auto; }
.hbh-404__code { font-size: 100px; font-weight: 700; color: var(--hbh-color-grey-mid); margin: 0; line-height: 1; }
.hbh-404__links { display: flex; gap: 16px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.hbh-search-form { display: flex; gap: 8px; margin: 24px 0; max-width: 480px; margin-left: auto; margin-right: auto; }
.hbh-search-form__input { flex: 1; padding: 12px 16px; border: 1px solid var(--hbh-color-border); border-radius: var(--hbh-radius-sm); font-size: 15px; }
.hbh-search-form__submit { background: var(--hbh-color-black); color: var(--hbh-color-white); border: none; padding: 12px 20px; border-radius: var(--hbh-radius-sm); }

/* ---- Breadcrumbs ---- */
.hbh-breadcrumbs { font-size: 13px; color: var(--hbh-color-secondary); margin-bottom: 8px; }
.hbh-breadcrumbs a { color: var(--hbh-color-secondary); }

/* ---- Responsive section padding tightening on mobile ---- */
@media (max-width: 600px) {
	.hbh-section { padding: 48px 20px; }
	.hbh-section-heading h2 { font-size: 26px; }
}

