/* hotel-theme.css — สไตล์ร่วมของทุกหน้า preview เทมเพลตโรงแรม (แปลจาก _hotel-theme.scss + คอมโพเนนต์ Angular) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@300;400;500;600&family=Prompt:wght@300;400;500;600;700&family=Kanit:wght@300;400;500;600;700&family=Noto+Sans+Thai:wght@300;400;500;600;700&family=Pridi:wght@300;400;500;600;700&family=Mitr:wght@300;400;500;600;700&family=Sarabun:wght@300;400;500;600;700&family=Athiti:wght@300;400;500;600;700&family=Taviraj:wght@300;400;500;600;700&family=IBM+Plex+Sans+Thai:wght@300;400;500;600;700&family=Bai+Jamjuree:wght@300;400;500;600;700&family=Krub:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #b6975a;
  --secondary-color: #9c7d43;
  --accent-color: #17293a;
  --font-family: 'Jost';
  --nav-width: 1200px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

body.hh-page {
  margin: 0;
  font-family: var(--font-family), 'Prompt', sans-serif;
  color: #22303c;
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.hh-container {
  width: 100%;
  max-width: var(--content-width, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hh-page-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-color);
  margin: 0 0 0.6rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.hh-page-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: var(--primary-color);
}

.hh-section-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin: 0 0 2rem;
}

.hh-btn-outline {
  display: inline-block;
  border: 1px solid var(--primary-color);
  color: var(--secondary-color);
  background: transparent;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hh-btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.hh-btn-gold {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.hh-btn-gold:hover {
  background: var(--secondary-color);
}

/* ── Navbar ── */
.hh-header {
  position: relative;
  z-index: 100;
}

.hh-navbar {
  background: #0f172a;
}

.hh-navbar-inner {
  max-width: var(--nav-width, 1200px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1.5rem;
}

.hh-navbar-inner.layout-center {
  justify-content: center;
  flex-wrap: wrap;
}

.hh-navbar-inner.layout-stacked {
  flex-direction: column;
}

.hh-navbar-inner.layout-right {
  flex-direction: row-reverse;
}

.hh-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 700;
}

.hh-logo-img {
  height: 36px;
  width: auto;
}

.hh-logo-mark {
  display: inline-block;
  background: var(--primary-color);
  border-radius: 50%;
}

.hh-logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hh-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  background: transparent !important;
}

.hh-menu-item {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0;
  position: relative;
}

.hh-menu-item:hover {
  color: var(--primary-color);
}

.hh-menu-item.has-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: inherit;
}

.hh-caret {
  font-size: 0.7em;
}

.hh-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #0f172a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0;
  z-index: 20;
}

.hh-menu-item.has-dropdown.open .hh-dropdown {
  display: block;
}

.hh-dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  color: #fff;
  white-space: nowrap;
}

.hh-dropdown a:hover {
  color: var(--primary-color);
}

.hh-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hh-burger {
    display: block;
  }

  .hh-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #0f172a !important;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  .hh-menu.open {
    display: flex;
  }

  .hh-dropdown {
    position: static;
    box-shadow: none;
  }
}

.trial-bar {
  background: #fef3c7;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ── Hero ── */
.hh-hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
}

.hh-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.hh-hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hh-hero-overlay {
  position: absolute;
  inset: 0;
}

.hh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #fff;
}

.hh-hero-slide.layout-left .hh-hero-content {
  margin: 0 0 0 8vw;
  text-align: left;
}

.hh-hero-slide.layout-right .hh-hero-content {
  margin: 0 8vw 0 auto;
  text-align: right;
}

.hh-hero-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.hh-hero-sub {
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
  opacity: 0.92;
}

.hh-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hh-hero-arrow--prev {
  left: 1.5rem;
}

.hh-hero-arrow--next {
  right: 1.5rem;
}

.hh-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 3;
}

.hh-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
}

.hh-hero-dot.active {
  background: #fff;
}

/* ── Intro ── */
.hh-intro {
  padding: 5rem 0;
}

.hh-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.about-layout-al-2 .hh-intro-grid {
  direction: rtl;
}

.about-layout-al-2 .hh-intro-content,
.about-layout-al-2 .hh-intro-media {
  direction: ltr;
}

.about-layout-al-3 .hh-intro-grid {
  grid-template-columns: 1fr;
}

.about-layout-al-3 .hh-intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hh-intro-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--accent-color);
  margin: 0 0 1.25rem;
}

.hh-intro-title span {
  color: var(--primary-color);
}

.hh-intro-text {
  color: #6b7280;
  margin: 0 0 1rem;
}

.hh-intro-media {
  border-radius: 6px;
  overflow: hidden;
  min-height: 420px;
}

.hh-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-intro-media video,
.hh-intro-media iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

@media (max-width: 900px) {
  .hh-intro-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Rooms ── */
.hh-rooms {
  padding: 5rem 0;
  background: #faf9f7;
}

.hh-rooms-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

.hh-room-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hh-room-list a {
  font-weight: 500;
}

.hh-room-list a:hover {
  color: var(--primary-color);
}

.hh-room-cards,
.hh-room-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.hh-room-card {
  background: #fff;
  border: 1px solid #e7e2da;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.hh-room-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.hh-room-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hh-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-room-body {
  padding: 1.25rem;
}

.hh-room-name {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--accent-color);
}

.hh-room-desc {
  color: #6b7280;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hh-room-readmore-wrap {
  margin-top: 0.75rem;
}

.hh-room-readmore {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

  .hh-room-cards,
  .hh-room-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {

  .hh-room-cards,
  .hh-room-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Facilities ── */
.hh-facilities {
  padding: 5rem 0;
}

.hh-facility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.hh-facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hh-facility .material-icons {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.hh-facility-label {
  font-size: 0.85rem;
  color: #475569;
}

.hh-facility-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.hh-facility-card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #faf9f7;
  padding: 1rem 1.25rem;
  border: 1px solid #e7e2da;
}

.hh-fac-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hh-fac-card-label {
  font-weight: 500;
}

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

@media (max-width: 640px) {

  .hh-facility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .hh-facility-cards {
    grid-template-columns: 1fr;
  }

  .hh-facility-card-item {
    padding: 0.85rem 1rem;
  }

  .hh-facilities {
    padding: 3rem 0;
  }
}

@media (max-width: 400px) {

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

/* ── Footer ── */
.hh-footer {
  background: #0f172a;
  color: #fff;
  padding-top: 3.25rem;
  margin-top: 3rem;
  border-top: 3px solid var(--primary-color);
}

.hh-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding-bottom: 2.5rem;
}

.hh-footer-inner.footer-spread {
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
}

.hh-footer-inner.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  gap: 1.75rem;
}

.hh-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}

.hh-footer-inner.footer-centered .hh-footer-brand {
  align-items: center;
}

.hh-footer-logo-img {
  height: 34px;
}

.hh-footer-mark {
  color: var(--primary-color);
  font-size: 1.3rem;
  line-height: 1;
}

.hh-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.hh-footer-inner.footer-spread .hh-footer-links {
  justify-content: flex-end;
}

.hh-footer-links a {
  opacity: 0.85;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}

.hh-footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.hh-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  justify-content: center;
  width: 100%;
  font-size: 0.85rem;
  opacity: 0.85;
}

.hh-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hh-footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hh-footer-contact-icon .material-icons {
  font-size: 1rem;
  color: #fff;
}

.hh-footer-contact-item:hover {
  opacity: 1;
}

.hh-footer-inner.footer-spread .hh-footer-contact {
  justify-content: flex-end;
  width: auto;
}

.hh-footer-inner.footer-columns .hh-footer-contact {
  justify-content: flex-start;
}

.hh-footer-socials {
  display: flex;
  gap: 0.6rem;
}

.hh-footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hh-footer-social-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.hh-footer-primary-bg .hh-footer-social-btn:hover {
  background: #fff;
  color: var(--primary-color);
}

.hh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
}

.hh-footer-copy {
  font-size: 0.8rem;
  opacity: 0.65;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* Footer responsive */
@media (max-width: 768px) {
  .hh-footer {
    padding-top: 2.5rem;
    margin-top: 2rem;
  }

  .hh-footer-inner {
    gap: 1.25rem;
    padding-bottom: 2rem;
    align-items: center;
  }

  .hh-footer-inner.footer-spread {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hh-footer-inner.footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hh-footer-brand {
    align-items: center;
    text-align: center;
  }

  .hh-footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .hh-footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .hh-footer-links {
    justify-content: center;
    gap: 0.4rem;
  }

  .hh-footer-links a {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }

  .hh-footer-inner.footer-spread .hh-footer-contact,
  .hh-footer-inner.footer-columns .hh-footer-contact {
    justify-content: center;
    align-items: center;
  }

  .hh-footer-inner.footer-spread .hh-footer-links,
  .hh-footer-inner.footer-columns .hh-footer-links {
    justify-content: center;
  }
}

/* ── Generic content page wrapper (about/rooms/gallery/blog/contact) ── */
.hh-page-header {
  padding: 3.5rem 0 2.5rem;
  background: #faf9f7;
  text-align: center;
}

.hh-breadcrumb {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.hh-breadcrumb a {
  color: var(--primary-color);
}

.hh-section {
  padding: 4rem 0;
}

/* ── About page ── */
.hh-about {
  padding: 4.5rem 0;
}

.hh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.hh-about-grid.about-lay-image-left {
  direction: rtl;
}

.hh-about-grid.about-lay-image-left .hh-about-text,
.hh-about-grid.about-lay-image-left .hh-about-img {
  direction: ltr;
}

.hh-about-grid.about-lay-image-top {
  grid-template-columns: 1fr;
}

.hh-about-grid.about-lay-image-top .hh-about-img {
  min-height: 420px;
}

.hh-about-grid.about-lay-no-image {
  grid-template-columns: 1fr;
}

.hh-about-text p {
  color: #6b7280;
  margin: 0 0 1rem;
}

.hh-about-img {
  border-radius: 6px;
  overflow: hidden;
  min-height: 320px;
}

.hh-about-img img,
.hh-about-img video,
.hh-about-img iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hh-about-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Services (about page) ── */
.hh-services {
  padding: 4.5rem 0;
  background: #faf9f7;
}

.hh-services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hh-section-subtitle {
  color: #6b7280;
  margin: 0;
}

.hh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

.hh-services-grid.services-list {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.hh-service-card {
  background: #fff;
  border: 1px solid #e7e2da;
  padding: 2rem 1.5rem;
  text-align: center;
}

.hh-services-grid.services-list .hh-service-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
}

.hh-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.hh-services-grid.services-list .hh-service-icon {
  margin: 0;
}

.hh-service-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--accent-color);
}

.hh-service-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 900px) {

  .hh-services-grid,
  .hh-services-grid.services-grid4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {

  .hh-services-grid,
  .hh-services-grid.services-grid4 {
    grid-template-columns: 1fr;
  }

  .hh-service-card {
    padding: 1.5rem 1.25rem;
  }

  .hh-services {
    padding: 3rem 0;
  }
}

/* ── Room list page ── */
.hh-rooms-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hh-rooms-count {
  color: #94a3b8;
  font-size: 0.9rem;
}

.hh-rooms-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.hh-filter-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 3px;
}

.hh-filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.hh-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

.hh-room-grid.rooms-list {
  grid-template-columns: 1fr;
}

.hh-room-grid.rooms-list .hh-room-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.hh-room-grid.rooms-list .hh-room-img {
  height: 100%;
}

.hh-room-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0 1rem;
}

.hh-room-price {
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
}

.hh-room-btn {
  display: inline-block;
}

@media (max-width: 900px) {

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

  .hh-room-grid.rooms-list .hh-room-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .hh-room-grid,
  .hh-room-grid.rooms-grid2 {
    grid-template-columns: 1fr;
  }
}

/* ── Room detail page (hh-rd-*) ── */
.hh-rd {
  padding: 2.5rem 0 4rem;
}

.hh-rd-crumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.hh-rd-crumb a {
  color: var(--primary-color);
}

.hh-rd-crumb-current {
  color: #475569;
}

.hh-rd-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hh-rd-hero {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}

.hh-rd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-rd-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.hh-rd-thumb {
  width: 80px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  background: none;
}

.hh-rd-thumb.active {
  border-color: var(--primary-color);
}

.hh-rd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-rd-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: 1.9rem;
  color: var(--accent-color);
  margin: 1.5rem 0 0.5rem;
}

.hh-rd-heading {
  font-size: 1.15rem;
  color: var(--accent-color);
  margin: 2rem 0 0.75rem;
}

.hh-rd-block p {
  color: #6b7280;
  margin: 0 0 0.75rem;
}

.hh-rd-amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.hh-rd-amenities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.92rem;
}

.hh-rd-amenities .material-icons {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.hh-rd-video video,
.hh-rd-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 6px;
}

.hh-rd-book {
  background: #faf9f7;
  border: 1px solid #e7e2da;
  padding: 1.75rem;
  position: sticky;
  top: 1.5rem;
}

.hh-rd-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hh-rd-price-note {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #94a3b8;
}

.hh-rd-specs {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hh-rd-specs li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #334155;
}

.hh-rd-specs .material-icons {
  color: var(--primary-color);
}

.hh-rd-specs small {
  display: block;
  color: #94a3b8;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hh-rd-book-btn,
.hh-rd-back-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .hh-rd-layout {
    grid-template-columns: 1fr;
  }

  .hh-rd-book {
    position: static;
  }
}

/* ── Gallery list page ── */
.hh-gallery {
  padding: 3rem 0 4.5rem;
}

.hh-gallery-search {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hh-search-input,
.hh-search-select {
  border: 1px solid #cbd5e1;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  flex: 1;
  min-width: 160px;
}

.hh-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
}

.hh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.hh-album {
  display: block;
  cursor: pointer;
}

.hh-album-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.hh-album-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-album-count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hh-album-count .material-icons {
  font-size: 1rem;
}

.hh-album-name {
  margin: 0.75rem 0 0.15rem;
  font-size: 1.05rem;
  color: var(--accent-color);
}

.hh-album-total {
  margin: 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

.hh-gallery-empty {
  text-align: center;
  color: #94a3b8;
  padding: 3rem 0;
}

@media (max-width: 900px) {

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

@media (max-width: 560px) {

  .hh-gallery-grid,
  .hh-gallery-grid.gallery-grid4 {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery detail page ── */
.hh-gd {
  padding: 2.5rem 0 4rem;
}

.hh-gd-crumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hh-gd-crumb a {
  color: var(--primary-color);
}

.hh-gd-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hh-gd-count {
  color: #94a3b8;
  font-size: 0.9rem;
}

.hh-gd-desc {
  color: #6b7280;
  margin: 0.5rem 0 2rem;
}

.hh-gd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hh-gd-item {
  position: relative;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.hh-gd-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hh-gd-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.hh-gd-item:hover .hh-gd-zoom {
  opacity: 1;
}

.hh-gd-video {
  margin-bottom: 2.5rem;
}

.hh-gd-video video,
.hh-gd-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 6px;
}

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

/* ── Lightbox ── */
.hh-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hh-lightbox img {
  max-width: 100%;
  max-height: 90vh;
}

.hh-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.hh-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hh-lightbox-prev {
  left: 1.5rem;
}

.hh-lightbox-next {
  right: 1.5rem;
}

.hh-lightbox-count {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .hh-lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .hh-lightbox-prev {
    left: 0.5rem;
  }

  .hh-lightbox-next {
    right: 0.5rem;
  }
}

/* ── Blog list page ── */
.hh-blog {
  padding: 3rem 0 4.5rem;
}

.hh-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hh-blog-grid.blog-grid,
.hh-blog-grid.blog-list {
  grid-template-columns: 1fr;
}

.hh-blog-grid.blog-grid .hh-blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.hh-blog-card {
  background: #fff;
  border: 1px solid #e7e2da;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.hh-blog-grid.blog-grid .hh-blog-card {
  margin-bottom: 0;
}

.hh-blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hh-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-blog-body {
  padding: 1.5rem;
}

.hh-blog-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: 1.3rem;
  color: var(--accent-color);
  margin: 0 0 0.4rem;
}

.hh-blog-date {
  color: #94a3b8;
  font-size: 0.82rem;
  margin: 0 0 0.75rem;
}

.hh-blog-excerpt {
  color: #6b7280;
  margin: 0 0 1.25rem;
}

.hh-blog-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hh-side-box {
  background: #faf9f7;
  border: 1px solid #e7e2da;
  padding: 1.5rem;
}

.hh-side-box:first-child {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.hh-side-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--accent-color);
}

.hh-side-box:first-child .hh-side-title {
  color: #fff;
}

.hh-side-content p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hh-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hh-side-list a {
  font-size: 0.9rem;
  color: #475569;
}

.hh-side-list a:hover {
  color: var(--primary-color);
}

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

  .hh-blog-grid.blog-grid .hh-blog-list {
    grid-template-columns: 1fr;
  }
}

/* ── Blog detail page ── */
.hh-bd {
  padding: 2.5rem 0 4rem;
}

.hh-bd-crumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hh-bd-crumb a {
  color: var(--primary-color);
}

.hh-bd-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hh-bd-title {
  font-family: var(--font-family), 'Playfair Display', 'Prompt', sans-serif;
  font-size: 2rem;
  color: var(--accent-color);
  margin: 0 0 0.75rem;
}

.hh-bd-meta {
  display: flex;
  gap: 1.25rem;
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.hh-bd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hh-bd-hero {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}

.hh-bd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-bd-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.hh-bd-thumb {
  width: 80px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  background: none;
}

.hh-bd-thumb.active {
  border-color: var(--primary-color);
}

.hh-bd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-bd-body {
  margin-top: 1.5rem;
}

.hh-bd-body p {
  color: #6b7280;
  margin: 0 0 1rem;
}

.hh-bd-video {
  margin-top: 1.5rem;
}

.hh-bd-video video,
.hh-bd-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 6px;
}

.hh-bd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hh-bd-tag {
  background: #f1f5f9;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  font-size: 0.82rem;
  color: #475569;
}

.hh-bd-back {
  display: inline-block;
  margin-top: 2rem;
}

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

/* ── Contact page ── */
.hh-contact {
  padding: 3.5rem 0 4.5rem;
}

.hh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.hh-contact-grid.contact-info-right {
  direction: rtl;
}

.hh-contact-grid.contact-info-right .hh-contact-info,
.hh-contact-grid.contact-info-right .hh-contact-map {
  direction: ltr;
}

.hh-contact-grid.contact-stacked {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hh-contact-grid.contact-stacked .hh-page-title {
  padding-bottom: 0.9rem;
}

.hh-contact-grid.contact-stacked .hh-page-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.hh-contact-grid.contact-stacked .hh-contact-row {
  justify-content: center;
}

.hh-contact-grid.contact-stacked .hh-contact-socials {
  justify-content: center;
}

.hh-contact-grid.contact-stacked .hh-map-frame {
  max-width: 100%;
}

.hh-contact-block {
  margin-bottom: 2rem;
}

.hh-contact-block h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin: 0 0 0.75rem;
}

.hh-contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.hh-contact-row .material-icons {
  color: var(--primary-color);
}

.hh-contact-row p {
  margin: 0;
  color: #475569;
}

.hh-contact-row a {
  color: var(--primary-color);
}

.hh-contact-socials {
  display: flex;
  gap: 0.75rem;
}

.hh-contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-contact-socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.hh-map-frame {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1rem;
}

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