/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #222;
  background-color: var(--secondary);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(214,179,106,0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(63,107,79,0.12), transparent 60%);
  line-height: 1.6;
}

/* =====================
   VARIABLES (easy reskin)
===================== */
:root {
  --primary: #3f6b4f;     /* muted forest green */
  --secondary: #f4f6f3;   /* warm off-white */
  --accent: #d6b36a;      /* earthy golden */
  --dark: #2b2b2b;
  --light: #ffffff;
  --muted: #6b6b6b;
  --max-width: 1180px;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
}


/* =====================
   UTILITIES
===================== */
section {
  padding: 80px 20px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.3;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

p {
  color: var(--muted);
}

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

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(214,179,106,0.55);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: auto;
}

/* =====================
   HEADER / NAVBAR
===================== */
header {
  position: sticky;
  top: 0;
  background: var(--light);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: navReveal 0.5s ease both;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}

.nav-cta {
  background: var(--primary);
  color: var(--light);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  background: #162f6d;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 47, 109, 0.2);
}
header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--accent);
  color: var(--dark);
  border-radius: 999px; /* pill = softer */
  padding: 10px 20px;
}

.nav-cta:hover {
  background: #caa556;
}

/* =====================
   HERO SECTION (REFINED)
===================== */
#home {
  padding: 0; /* override section padding */
}

/* Fixed-ratio hero container */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Media layer */
.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  color: var(--light);
  animation: fadeUp 0.9s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--light);
}

.hero-content p {
  max-width: 520px;
  font-size: 1.15rem;
  margin-bottom: 36px;
  color: #eaeaea;
}

/* CTA refinement */
.hero-buttons a {
  display: inline-block;
  margin-right: 16px;
  padding: 14px 30px;
  font-size: 0.95rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Primary CTA */
.hero-buttons a:first-child {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(244,180,0,0.35);
}

.hero-buttons a:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.45);
}

/* Secondary CTA */
.hero-buttons a:last-child {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--light);
}

.hero-buttons a:last-child:hover {
  background: rgba(255,255,255,0.15);
}
/* =====================
   HERO – MOBILE
===================== */
@media (max-width: 768px) {
  .hero {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  }
}

/* =====================
   ABOUT PREVIEW
===================== */
#about-preview {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

#about-preview a {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
}
/* =====================
   ABOUT – ENHANCED
===================== */
.about {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about {
  background: linear-gradient(
    to right,
    #f6f8f5 0%,
    #ffffff 60%
  );
}

.about-text {
  max-width: 520px;
}

.about-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about h2 {
  margin-bottom: 18px;
}

.about-intro {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
}

/* Highlights list */
.about-highlights {
  list-style: none;
  margin-top: 24px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-highlights i {
  color: var(--primary);
  font-size: 1rem;
  width: 20px; /* keeps alignment clean */
}

/* Image polish */
/* =====================
   ABOUT IMAGE – SUBTLE MOTION
===================== */

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

.about-image img {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);

  /* animation */
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: aboutImageReveal 1.2s ease forwards;
}

/* Gentle hover (optional but nice) */
.about-image img:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 26px 55px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Keyframes */
@keyframes aboutImageReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* Mobile */
@media (max-width: 768px) {
  #about-preview {
    grid-template-columns: 1fr;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image {
    margin-top: 30px;
  }
}
/* =====================
   TEXT STAGGER – ABOUT
===================== */

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.show > * {
  opacity: 1;
  transform: translateY(0);
}

/* Delay per element */
.stagger.show > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.show > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.show > *:nth-child(3) { transition-delay: 0.35s; }
.stagger.show > *:nth-child(4) { transition-delay: 0.5s; }
.stagger.show > *:nth-child(5) { transition-delay: 0.65s; }
/* SAFETY FALLBACK */
.no-js .stagger > * {
  opacity: 1;
  transform: none;
}

/* =====================
   ROOMS – HOMESTAY STYLE
===================== */

.rooms {
  background: var(--secondary);
}

.rooms-header {
  max-width: 620px;
  margin: 0 auto 50px;
  text-align: center;
}

.room-cards {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

.room-card img {
  height: 220px;
  object-fit: cover;
}

.room-info {
  padding: 22px;
}

.room-info h3 {
  margin-bottom: 8px;
}

.room-info p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* Features */
.room-features {
  list-style: none;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.room-features li {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.room-features i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* CTA */
.room-cta {
  display: inline-block;
  font-weight: 600;
  color: var(--dark);
  background: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.room-cta:hover {
  background: #caa556;
  transform: translateY(-2px);
}
/* =====================
   AMENITIES – HOMESTAY STYLE
===================== */

.amenities {
  background: var(--secondary);
  padding-top: 100px;
  padding-bottom: 100px;
}

.amenities-header {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.amenities-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: var(--light);
  padding: 34px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

.amenity-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.amenity-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .amenities-grid {
    gap: 20px;
  }
}

/* =====================
   CTA STRIP
===================== */
#cta {
  background: var(--primary);
  color: var(--light);
  text-align: center;
}

#cta h2 {
  color: var(--light);
}

#cta a {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
}

/* =====================
   CONTACT
===================== */
#contact {
  max-width: var(--max-width);
  margin: auto;
}

#contact ul {
  list-style: none;
  margin: 20px 0;
}

#contact li {
  margin-bottom: 8px;
}

#contact a {
  display: inline-block;
  margin-top: 12px;
  background: #25d366;
  color: var(--light);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #0d1b3d;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

footer p {
  color: #ccc;
  font-size: 0.9rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  #about-preview {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* =====================
   BURGER MENU
===================== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav base */
@media (max-width: 768px) {

  .desktop-only {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light);
    flex-direction: column;
    gap: 0;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);

    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .nav-links a {
    padding: 16px 20px;
    display: block;
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-cta a {
    background: var(--primary);
    color: white;
    text-align: center;
    font-weight: 600;
  }

  /* Burger animation */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* =====================
   HERO – POLISH
===================== */
.hero-content {
  animation: fadeUp 0.9s ease forwards;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-content p {
  max-width: 520px;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

/* CTA refinement */
.hero-buttons a {
  padding: 14px 30px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* Primary CTA */
.hero-buttons a:first-child {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(244,180,0,0.35);
}

.hero-buttons a:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.45);
}

/* Secondary CTA */
.hero-buttons a:last-child {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
}

.hero-buttons a:last-child:hover {
  background: rgba(255,255,255,0.15);
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile media query adjustment */
@media (max-width: 768px) {
  #home {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  }
}
/* =====================
   ABOUT SECTION – POLISH
===================== */
.about {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-text p {
  margin-bottom: 14px;
}

.about-text a {
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

/* Subtle underline animation */
.about-text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.about-text a:hover::after {
  width: 100%;
}

.about-image img {
  border-radius: 12px;
}

/* Mobile balance */
@media (max-width: 768px) {
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-image {
    margin-top: 30px;
  }
}
/* =====================
   ROOMS – POLISH
===================== */
.rooms {
  background: var(--secondary);
}

.rooms-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.rooms-header p {
  color: var(--muted);
}

/* Room cards refinement */
.room-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card img {
  transition: transform 0.4s ease;
}

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

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.room-info {
  padding-top: 14px;
}

.room-info p {
  margin-bottom: 14px;
}

/* Optional price style (future-ready) */
.room-price {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

/* CTA inside card */
.room-info a {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

/* Subtle arrow hint */
.room-info a::after {
  content: " →";
  transition: transform 0.3s ease;
}

.room-info a:hover::after {
  transform: translateX(4px);
}
/* =====================
   AMENITIES – POLISH
===================== */
.amenities {
  padding-top: 100px;
  padding-bottom: 100px;
}

.amenities-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.amenities-header p {
  color: var(--muted);
}

/* Amenities grid refinement */
.amenities-list {
  margin-top: 40px;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenities-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.amenity-icon {
  font-size: 1.3rem;
  line-height: 1;
}
/* =====================
   GALLERY – HOMEPAGE PREVIEW
===================== */

.gallery {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gallery-header {
  max-width: 620px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-preview {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

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

/* CTA */
.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.gallery-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-btn:hover {
  background: #caa556;
  transform: translateY(-2px);
}

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

/* =====================
   LIGHTBOX
===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 1;
}
/* =====================
   BOOKING CTA – HOMEPAGE
===================== */
.booking-cta {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 80px 20px;
}

.booking-cta-content {
  max-width: 700px;
  margin: auto;
}

.booking-cta h2 {
  color: var(--light);
  margin-bottom: 12px;
}

.booking-cta p {
  color: #e0e0e0;
  margin-bottom: 24px;
}

.booking-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.45);
}
/* =====================
   CONTACT PAGE
===================== */
.contact-page {
  padding: 100px 20px;
}

.contact-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-layout {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Booking form */
.booking-form {
  background: var(--secondary);
  padding: 40px;
  border-radius: 12px;
}

.booking-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.booking-form button {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,180,0,0.4);
}

/* Map */
.map-box {
  border-radius: 12px;
  overflow: hidden;
  min-height: 100%;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    min-height: 300px;
  }
}
/* =====================
   ROOMS PAGE
===================== */
.rooms-page {
  padding: 100px 20px;
}

.rooms-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.rooms-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Room token */
.room-token {
  background: var(--light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-token:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.room-token img {
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.room-token-body {
  padding: 22px;
}

.room-desc {
  margin: 10px 0 14px;
}

.room-features {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.room-features li {
  margin-bottom: 6px;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.room-price {
  font-weight: 700;
  color: var(--dark);
}

.room-book-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.room-book-btn:hover {
  background: #162f6d;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .room-token img {
    height: 200px;
  }

  .room-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-book-btn {
    width: 100%;
    text-align: center;
  }
}
/* =====================
   AMENITIES PAGE
===================== */
.amenities-page {
  padding: 100px 20px;
}

.amenities-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.amenities-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Amenity card */
.amenity-card {
  background: var(--light);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}

.amenity-card.show {
  transform: translateY(0);
  opacity: 1;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.amenity-card h3 {
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .amenity-card {
    padding: 30px 22px;
  }
}
/* =====================
   FOOTER – HOMESTAY COLOR TONE
===================== */

.site-footer {
  background: #e7ece7; /* warm off-white */
  color: var(--dark);
  padding-top: 80px;
}

.footer-container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand */
.footer-logo {
  color: #2f4f3a; /* deep forest tone */
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer-col p {
  color: #4f5f55;
  font-size: 0.9rem;
}

/* Headings */
.footer-col h4 {
  color: #2b3a2f;
  margin-bottom: 14px;
  font-size: 1rem;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: #4a5a50;
}

.footer-col ul li a:hover {
  color: #2f6b45;
}


/* Socials */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
 background: rgba(47,79,58,0.12);
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f4f3a;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Footer CTA */
.footer-cta p {
  margin-bottom: 16px;
  color: var(--muted);
}

.footer-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom p {
  margin: 6px 0;
  color: #2b3a2f;
}

.footer-credit {
  font-size: 0.8rem;
  color: #3f5f4a;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

.logo img {
  max-height: 48px;      /* THIS is what makes it a logo */
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    max-height: 36px;
  }
}
/* =====================
   ROOMS PAGE – HERO
===================== */

.rp-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.rp-hero-inner {
  max-width: 720px;
  margin: auto;
}

.rp-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.rp-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   ROOMS PAGE – LIST
===================== */

.rp-section {
  padding: 80px 20px;
}

.rp-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  gap: 42px;
}

/* =====================
   ROOM CARD
===================== */

.rp-card {
  background: var(--light);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

  /* animation base */
  opacity: 0;
  transform: translateY(40px);
}

.rp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

/* =====================
   ROOM MEDIA
===================== */

.rp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.95);
}

/* =====================
   ROOM CONTENT
===================== */

.rp-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.rp-header h2 {
  font-size: 1.45rem;
}

.rp-price {
  font-weight: 700;
  color: var(--primary);
}

.rp-desc {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* =====================
   ROOM FEATURES
===================== */

.rp-features {
  list-style: none;
  margin-bottom: 24px;
}

.rp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.rp-features i {
  color: var(--primary);
}

/* =====================
   ROOM ACTIONS
===================== */

.rp-actions {
  margin-top: auto;
}

.rp-book-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rp-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* =====================
   CTA
===================== */

.rp-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f2f5f1, #ffffff);
}

.rp-cta-inner {
  max-width: 620px;
  margin: auto;
}

.rp-cta h2 {
  margin-bottom: 10px;
}

.rp-cta p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* =====================
   REVEAL (JS WILL ADD .animate)
===================== */

.rp-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* =====================
   MOBILE
===================== */

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

  .rp-media img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .rp-hero h1 {
    font-size: 2.1rem;
  }

  .rp-content {
    padding: 26px;
  }
}
/* =====================
   AMENITIES PAGE – HERO
===================== */

.ap-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.ap-hero-inner {
  max-width: 720px;
  margin: auto;
}

.ap-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.ap-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   AMENITIES PAGE – SECTION
===================== */

.ap-section {
  padding: 80px 20px;
}

.ap-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

/* =====================
   AMENITY CARD
===================== */

.ap-card {
  background: var(--light);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  /* animation base */
  opacity: 0;
  transform: translateY(40px);
}

.ap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.14);
}

.ap-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.ap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ap-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* =====================
   CTA
===================== */

.ap-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f2f5f1, #ffffff);
}

.ap-cta-inner {
  max-width: 620px;
  margin: auto;
}

.ap-cta h2 {
  margin-bottom: 10px;
}

.ap-cta p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* =====================
   REVEAL (JS WILL ADD .animate)
===================== */

.ap-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {
  .ap-hero h1 {
    font-size: 2.1rem;
  }

  .ap-container {
    gap: 26px;
  }

  .ap-card {
    padding: 30px 22px;
  }
}
/* =====================
   GALLERY PAGE – HERO
===================== */

.gp-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.gp-hero-inner {
  max-width: 720px;
  margin: auto;
}

.gp-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.gp-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   GALLERY SECTION
===================== */

.gp-section {
  padding: 80px 20px;
}

.gp-container {
  max-width: var(--max-width);
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* =====================
   GALLERY ITEM
===================== */

.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--light);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  cursor: pointer;

  /* animation base */
  opacity: 0;
  transform: translateY(40px);
}

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.95) contrast(0.95);
}

/* =====================
   CAPTION OVERLAY
===================== */

.gp-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0)
  );

  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* =====================
   HOVER EFFECTS
===================== */

.gp-item:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1);
}

.gp-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   CTA
===================== */

.gp-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f2f5f1, #ffffff);
}

.gp-cta-inner {
  max-width: 620px;
  margin: auto;
}

.gp-cta h2 {
  margin-bottom: 10px;
}

.gp-cta p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* =====================
   REVEAL (JS WILL ADD .animate)
===================== */

.gp-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {
  .gp-hero h1 {
    font-size: 2.1rem;
  }

  .gp-container {
    gap: 22px;
  }

  .gp-item figcaption {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}
/* =====================
   CONTACT PAGE – HERO
===================== */

.cp-hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.cp-hero-inner {
  max-width: 720px;
  margin: auto;
}

.cp-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.cp-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* =====================
   CONTACT PAGE – SECTION
===================== */

.cp-section {
  padding: 80px 20px;
}

.cp-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* =====================
   CONTACT INFO
===================== */

.cp-info h2 {
  margin-bottom: 10px;
}

.cp-info p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cp-details {
  list-style: none;
  margin-bottom: 26px;
}

.cp-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.cp-details i {
  color: var(--primary);
  font-size: 1rem;
}

.cp-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cp-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* =====================
   CONTACT FORM
===================== */

.cp-form {
  background: var(--light);
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.cp-form h2 {
  margin-bottom: 22px;
}

.cp-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.cp-field label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--muted);
}

.cp-field input,
.cp-field textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 0.9rem;
  font-family: inherit;
}

.cp-field input:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.cp-submit-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* =====================
   MAP
===================== */

.cp-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* =====================
   MOBILE
===================== */

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

  .cp-form {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .cp-hero h1 {
    font-size: 2.1rem;
  }
}

/* =====================
   RIDGELINE TEMPLATE (HOME ONLY)
===================== */
.template-ridgeline {
  font-family: "Urbanist", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #f8f7f4;
  color: #2d332f;
}

.template-ridgeline h1,
.template-ridgeline h2,
.template-ridgeline h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
}

.template-ridgeline header {
  background: rgba(248, 247, 244, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55, 67, 60, 0.12);
  box-shadow: 0 8px 24px rgba(30,36,33,0.08);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.template-ridgeline header.is-scrolled {
  background: rgba(248, 247, 244, 0.96);
  border-bottom-color: rgba(55, 67, 60, 0.18);
  box-shadow: 0 10px 28px rgba(30,36,33,0.12);
}

.template-ridgeline .nav-links a,
.template-ridgeline .nav-cta,
.template-ridgeline .logo a {
  color: #2f3a34;
}

.template-ridgeline .nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.template-ridgeline .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  opacity: 0.55;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.template-ridgeline .nav-links a:hover::after,
.template-ridgeline .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.template-ridgeline .nav-links a:hover {
  color: #586c5c;
}

.template-ridgeline .nav-cta {
  background: #e3c98f;
  color: #2b302c;
  box-shadow: 0 8px 18px rgba(90, 72, 38, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.template-ridgeline .nav-cta:hover {
  background: #d7ba7e;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(90, 72, 38, 0.2);
}

.rl-hero {
  padding: 90px 20px 60px;
  position: relative;
}

.rl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201,180,139,0.18), transparent 45%);
  z-index: 0;
}

.rl-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.rl-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: #6b6e72;
  margin-bottom: 16px;
}

.rl-hero-copy h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
}

.rl-hero-copy p {
  font-size: 1.05rem;
  color: #565a5e;
  margin-bottom: 24px;
}

.rl-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rl-btn.primary {
  background: #e1c488;
  color: #2b302c;
  box-shadow: 0 10px 24px rgba(115, 86, 44, 0.22);
}

.rl-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(115, 86, 44, 0.28);
}

.rl-btn.ghost {
  border: 1px solid rgba(17,20,23,0.2);
  color: #1b1f24;
  background: transparent;
}

.rl-btn.ghost:hover {
  background: rgba(17,20,23,0.05);
}

.rl-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #44484c;
  font-size: 0.9rem;
}

.rl-hero-visual {
  display: grid;
  gap: 20px;
}

.rl-hero-image {
  position: relative;
}

.rl-hero-image img {
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.rl-hero-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(46, 52, 48, 0.75);
  color: #f4f2ed;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.rl-book-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: grid;
  gap: 12px;
}

.rl-book-card label {
  font-size: 0.85rem;
  color: #5b6064;
}

.rl-book-card input,
.rl-book-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dde1e5;
  font-family: inherit;
  background: #fbfaf7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rl-book-card input:focus,
.rl-book-card select:focus {
  border-color: #d0b67c;
  box-shadow: 0 0 0 3px rgba(209, 181, 124, 0.2);
  background: #ffffff;
}

.rl-book-card input[type="date"]::-webkit-calendar-picker-indicator {
  background-color: #d9c7a1;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
}

.rl-book-card input[type="date"] {
  color: #3c403d;
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.rl-note {
  font-size: 0.8rem;
  color: #777c81;
}

.rl-trust-strip {
  background: #111417;
  color: #f6f5f2;
  padding: 16px 20px;
}

.rl-trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.rl-about {
  padding: 90px 20px;
}

.rl-about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.rl-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: #8a8f95;
  margin-bottom: 14px;
}

.rl-about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rl-about-stats div {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.rl-about-stats h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.rl-section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.rl-room-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rl-room {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.rl-room-media img {
  height: 210px;
  object-fit: cover;
}

.rl-room-body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.rl-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #6a6f74;
}

.rl-link {
  font-weight: 600;
  color: #1c1f23;
}

.rl-amenities {
  background: #ffffff;
}

.rl-amenities-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rl-amenities-grid article {
  background: #f6f5f2;
  padding: 20px;
  border-radius: 16px;
}

.rl-amenities-grid i {
  color: #ff9f59;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.rl-gallery {
  padding-bottom: 90px;
}

.rl-gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rl-gallery-item img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.rl-reviews {
  background: #111417;
  color: #f6f5f2;
}

.rl-reviews h2,
.rl-reviews p,
.rl-reviews span {
  color: inherit;
}

.rl-review-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rl-review-grid article {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
}

.rl-review-grid span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.rl-location {
  padding: 90px 20px;
}

.rl-location-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.rl-location-inner ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #5e6368;
}

.rl-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 18px;
}

/* =====================
   HOME INDEX – COLOR HARMONY
===================== */
.home-index {
  background: #f8f7f4;
}

.home-index .rl-trust-strip {
  background: #e7e1d5;
  color: #2f3531;
}

.home-index .rl-about,
.home-index .rl-gallery,
.home-index .rl-location {
  background: #f8f7f4;
}

.home-index .rl-rooms,
.home-index .rl-amenities {
  background: #f2eee6;
}

.home-index .rl-about-stats div,
.home-index .rl-room,
.home-index .rl-amenities-grid article,
.home-index .rl-review-grid article {
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(36, 40, 37, 0.08);
}

.home-index .rl-amenities-grid i {
  color: #887552;
}

.home-index .rl-reviews {
  background: #ece6da;
  color: #2f3531;
}

.home-index .rl-review-grid article {
  background: rgba(255,255,255,0.8);
}

.home-index .rl-link {
  color: #37443d;
}

.home-index .rl-label {
  color: #7f837b;
}

.home-index .rl-gallery-item {
  background: #fffdf8;
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(36, 40, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-index .rl-gallery-item img {
  height: clamp(180px, 20vw, 240px);
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.home-index .rl-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(36, 40, 37, 0.11);
}

.home-index .rl-gallery-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .home-index .rl-gallery-item img {
    height: 210px;
  }
}

/* =====================
   GALLERY PAGE – COLOR HARMONY
===================== */
.gallery-page-view {
  background: #f8f7f4;
}

.gallery-page-view .rl-page-hero,
.gallery-page-view .rl-gallery-page {
  background: #f8f7f4;
}

.gallery-page-view .rl-label {
  color: #7f837b;
}

.gallery-page-view .rl-page-hero-card {
  background: #ece6da;
  color: #2f3531;
  box-shadow: 0 14px 30px rgba(36, 40, 37, 0.1);
}

.gallery-page-view .rl-gallery-page-grid {
  gap: 20px;
}

.gallery-page-view .rl-gallery-item {
  background: #fffdf8;
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(36, 40, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-page-view .rl-gallery-item img {
  height: clamp(200px, 22vw, 260px);
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.gallery-page-view .rl-gallery-item figcaption {
  bottom: 18px;
  left: 18px;
  background: rgba(55, 62, 58, 0.72);
  color: #f7f4ee;
}

.gallery-page-view .rl-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(36, 40, 37, 0.11);
}

.gallery-page-view .rl-gallery-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-page-view .rl-gallery-item img {
    height: 220px;
  }
}

/* =====================
   ROOMS PAGE – COLOR HARMONY
===================== */
.rooms-page-view {
  background: #f8f7f4;
}

.rooms-page-view .rl-page-hero,
.rooms-page-view .rl-rooms-page,
.rooms-page-view .rl-room-benefits {
  background: #f8f7f4;
}

.rooms-page-view .rl-label {
  color: #7f837b;
}

.rooms-page-view .rl-page-hero-card {
  background: #ece6da;
  color: #2f3531;
  box-shadow: 0 14px 30px rgba(36, 40, 37, 0.1);
}

.rooms-page-view .rl-room-panel {
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(36, 40, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rooms-page-view .rl-room-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(36, 40, 37, 0.11);
}

.rooms-page-view .rl-room-panel-media img {
  height: clamp(220px, 26vw, 320px);
}

.rooms-page-view .rl-room-panel-head span {
  color: #887552;
}

.rooms-page-view .rl-room-panel-body ul,
.rooms-page-view .rl-room-panel-body p {
  color: #5f6460;
}

.rooms-page-view .rl-room-benefits-grid div {
  background: #fffdf8;
  box-shadow: 0 10px 22px rgba(36, 40, 37, 0.07);
}

.rooms-page-view .rl-link {
  color: #37443d;
}

@media (max-width: 768px) {
  .rooms-page-view .rl-room-panel-media img {
    height: 220px;
  }
}

/* =====================
   AMENITIES PAGE – COLOR HARMONY
===================== */
.amenities-page-view {
  background: #f8f7f4;
}

.amenities-page-view .rl-page-hero,
.amenities-page-view .rl-amenities-page,
.amenities-page-view .rl-amenities-experience,
.amenities-page-view .rl-faq {
  background: #f8f7f4;
}

.amenities-page-view .rl-label {
  color: #7f837b;
}

.amenities-page-view .rl-page-hero-card {
  background: #ece6da;
  color: #2f3531;
  box-shadow: 0 14px 30px rgba(36, 40, 37, 0.1);
}

.amenities-page-view .rl-amenities-card,
.amenities-page-view .rl-faq-grid article {
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(36, 40, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.amenities-page-view .rl-amenities-card:hover,
.amenities-page-view .rl-faq-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(36, 40, 37, 0.11);
}

.amenities-page-view .rl-amenities-card i {
  color: #887552;
}

.amenities-page-view .rl-info-strip {
  background: #ece6da;
  color: #2f3531;
}

.amenities-page-view .rl-experience-media img {
  box-shadow: 0 18px 36px rgba(36, 40, 37, 0.12);
}

/* =====================
   CONTACT PAGE – COLOR HARMONY
===================== */
.contact-page-view {
  background: #f8f7f4;
}

.contact-page-view .rl-page-hero,
.contact-page-view .rl-contact,
.contact-page-view .rl-map-section {
  background: #f8f7f4;
}

.contact-page-view .rl-label {
  color: #7f837b;
}

.contact-page-view .rl-page-hero-card {
  background: #ece6da;
  color: #2f3531;
  box-shadow: 0 14px 30px rgba(36, 40, 37, 0.1);
}

.contact-page-view .rl-contact-cards div,
.contact-page-view .rl-contact-form {
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(36, 40, 37, 0.08);
}

.contact-page-view .rl-contact-note {
  background: #ece6da;
  color: #2f3531;
}

.contact-page-view .rl-map-section iframe {
  box-shadow: 0 16px 34px rgba(36, 40, 37, 0.12);
}

.rl-cta {
  background: linear-gradient(120deg, #eee7d9, #f8f6f1);
  text-align: center;
  padding: 80px 20px;
}

.rl-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.rl-page-hero {
  padding: 90px 20px 70px;
}

.rl-page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.rl-page-hero-copy h1 {
  font-size: 3rem;
  margin-bottom: 18px;
}

.rl-page-hero-copy p {
  color: #575c61;
  margin-bottom: 24px;
}

.rl-page-hero-card {
  background: #e9e4d8;
  color: #2d332f;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(36, 40, 37, 0.12);
}

.rl-page-hero-card h2 {
  color: inherit;
  margin-bottom: 14px;
}

.rl-page-hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.rl-page-hero-card i {
  color: #8d7a56;
  margin-right: 8px;
}

.rl-amenities-page {
  background: #ffffff;
}

.rl-amenities-page-grid {
  margin-top: 10px;
}

.rl-amenities-card {
  background: #f6f5f2;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.rl-amenities-experience {
  padding: 90px 20px;
}

.rl-amenities-experience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.rl-experience-media img {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.rl-experience-copy ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #5f6469;
}

.rl-info-strip {
  background: #e5dfd2;
  color: #2f3531;
  padding: 24px 20px;
}

.rl-info-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rl-info-inner h3,
.rl-info-inner p {
  color: inherit;
}

.rl-faq {
  padding: 90px 20px;
}

.rl-faq-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rl-faq-grid article {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.rl-rooms-page {
  background: #ffffff;
}

.rl-rooms-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.rl-room-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  background: #f6f5f2;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.rl-room-panel-media img {
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
}

.rl-room-panel-body {
  display: grid;
  gap: 12px;
}

.rl-room-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.rl-room-panel-head span {
  font-weight: 700;
  color: #8d7852;
}

.rl-room-panel-body ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: #5e6368;
  font-size: 0.9rem;
}

.rl-room-panel-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rl-room-benefits {
  padding: 90px 20px;
  background: #ebe5d9;
  color: #2f3531;
}

.rl-room-benefits .rl-section-head h2,
.rl-room-benefits .rl-section-head p,
.rl-room-benefits .rl-section-head span {
  color: inherit;
}

.rl-room-benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rl-room-benefits-grid div {
  background: rgba(255,255,255,0.72);
  border-radius: 18px;
  padding: 20px;
}

.rl-gallery-page {
  background: #ffffff;
  padding-bottom: 90px;
}

.rl-gallery-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rl-gallery-page-grid figure {
  position: relative;
}

.rl-gallery-page-grid figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(55, 62, 58, 0.72);
  color: #f7f4ee;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.rl-gallery-page-grid img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  height: 100%;
  object-fit: cover;
}

.rl-contact {
  background: #ffffff;
  padding: 90px 20px;
}

.rl-contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.rl-contact-details p {
  color: #575c61;
  margin-bottom: 20px;
}

.rl-contact-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.rl-contact-cards div {
  background: #f6f5f2;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.rl-contact-note {
  background: #e8e1d3;
  color: #2f3531;
  border-radius: 16px;
  padding: 16px 18px;
}

.rl-contact-form {
  background: #f6f5f2;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.rl-field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.rl-field label {
  font-size: 0.85rem;
  color: #5b6064;
}

.rl-field input,
.rl-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dde1e5;
  font-family: inherit;
}

.rl-map-section {
  padding: 90px 20px;
}

.rl-map-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.rl-map-section iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .rl-hero-inner,
  .rl-about-inner,
  .rl-location-inner,
  .rl-page-hero-inner,
  .rl-amenities-experience-inner,
  .rl-room-panel,
  .rl-contact-inner,
  .rl-map-inner {
    grid-template-columns: 1fr;
  }

  .rl-room-grid,
  .rl-amenities-grid,
  .rl-gallery-grid,
  .rl-review-grid,
  .rl-faq-grid,
  .rl-room-benefits-grid,
  .rl-gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .rl-hero {
    padding: 70px 24px 40px;
  }

  .rl-hero-copy {
    padding-inline: 4px;
  }

  .rl-hero-copy h1 {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .rl-hero-copy p {
    line-height: 1.7;
  }

  .rl-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rl-trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rl-about-stats,
  .rl-room-grid,
  .rl-amenities-grid,
  .rl-gallery-grid,
  .rl-review-grid,
  .rl-info-inner,
  .rl-faq-grid,
  .rl-room-benefits-grid,
  .rl-gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .rl-room-media img {
    height: 190px;
  }
}

/* =====================
   QUIET LUXURY VARIANT
===================== */
.variant-quiet section {
  padding: 90px 20px;
}

.ql-hero {
  padding: 70px 20px 100px;
}

.ql-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.ql-hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.ql-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #5a6c62;
  margin-bottom: 16px;
}

.ql-hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.ql-hero-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}

.ql-price {
  background: #efe8d7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.ql-divider {
  color: #9aa6a0;
}

.ql-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ql-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ql-btn.primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(214,179,106,0.35);
}

.ql-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(214,179,106,0.45);
}

.ql-btn.ghost {
  border: 1px solid rgba(63,107,79,0.35);
  color: var(--primary);
  background: transparent;
}

.ql-btn.ghost:hover {
  background: rgba(63,107,79,0.08);
}

.ql-trust {
  display: grid;
  gap: 10px;
  color: #4c5d55;
  font-size: 0.9rem;
}

.ql-trust i {
  color: var(--primary);
  margin-right: 8px;
}

.ql-hero-media {
  position: relative;
}

.ql-hero-media img {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.ql-hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: #2f3b34;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.ql-about {
  background: #ffffff;
}

.ql-about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.ql-about-content .ql-lead {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.ql-highlights {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.ql-highlight {
  background: #f6f3ea;
  padding: 16px 18px;
  border-radius: 14px;
}

.ql-highlight h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.ql-section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.ql-room-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ql-room-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.ql-room-card img {
  height: 220px;
  object-fit: cover;
}

.ql-room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ql-room-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ql-room-price {
  font-weight: 700;
  color: var(--primary);
}

.ql-room-body ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.ql-text-link {
  font-weight: 600;
  color: var(--primary);
}

.ql-mini-faq {
  max-width: var(--max-width);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ql-mini-faq div {
  background: #f8f6f0;
  padding: 18px;
  border-radius: 16px;
}

.ql-amenities {
  background: #ffffff;
}

.ql-amenities-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ql-amenity-card {
  background: #f8f6f0;
  border-radius: 18px;
  padding: 22px;
}

.ql-amenity-card i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.ql-gallery {
  background: #fdfcf9;
}

.ql-gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ql-gallery-grid .gallery-item img {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.ql-gallery-cta {
  text-align: center;
  margin-top: 26px;
}

.ql-testimonials {
  background: #ffffff;
}

.ql-testimonial-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ql-testimonial-card {
  background: #f8f6f0;
  border-radius: 18px;
  padding: 22px;
  font-style: italic;
}

.ql-testimonial-meta {
  margin-top: 12px;
  font-weight: 600;
  color: #4c5d55;
}

.ql-badges {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  color: #4c5d55;
  font-weight: 600;
}

.ql-badges span {
  background: #efe8d7;
  padding: 8px 14px;
  border-radius: 999px;
}

.ql-location-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.ql-location-content ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.ql-location-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.ql-location-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 14px;
}

.ql-location-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ql-cta {
  background: linear-gradient(135deg, #f8f2e4, #ffffff);
  text-align: center;
}

.ql-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.ql-mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1200;
}

@media (max-width: 1024px) {
  .ql-hero-inner,
  .ql-about-inner,
  .ql-location-inner {
    grid-template-columns: 1fr;
  }

  .ql-room-grid,
  .ql-amenities-grid,
  .ql-gallery-grid,
  .ql-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ql-hero {
    padding: 40px 20px 70px;
  }

  .ql-hero-content h1 {
    font-size: 2.3rem;
  }

  .ql-hero-actions {
    flex-direction: column;
  }

  .ql-room-grid,
  .ql-amenities-grid,
  .ql-gallery-grid,
  .ql-testimonial-grid,
  .ql-mini-faq {
    grid-template-columns: 1fr;
  }

  .ql-room-card img {
    height: 200px;
  }

  .ql-mobile-cta {
    display: block;
  }
}
