/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #121212;
  --black-light: #1a1a1a;
  --gold: #D4AF37;
  --gold-dark: #b8962e;
  --gold-light: #e8c84a;
  --white: #f5f5f5;
  --white-dim: #cccccc;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  /* prevent horizontal scroll on any mobile browser */
  width: 100%;
  max-width: 100vw;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(18, 18, 18, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white-dim);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.35;
  filter: brightness(0.7) saturate(0.8);
  animation: bannerZoom 25s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
  0%   { transform: scale(1);   object-position: center center; }
  100% { transform: scale(1.08); object-position: center top; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(18,18,18,0.3) 0%, rgba(18,18,18,0.8) 70%),
    linear-gradient(180deg, rgba(18,18,18,0.6) 0%, transparent 30%, transparent 70%, rgba(18,18,18,0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  max-width: 700px;
}

.hero-emblem {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 24px;
  animation: gentleFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 48px;
}

/* ===== ROOMS SECTION ===== */
.rooms {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #0e0e0e 0%, #161310 40%, #1a1610 60%, #0e0e0e 100%);
  overflow: hidden;
}

.rooms-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.room-card {
  position: relative;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
  overflow: hidden;
}

.room-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05) 40%, rgba(255, 255, 255, 0.03) 60%, rgba(212, 175, 55, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.room-card-inner {
  position: relative;
  background: linear-gradient(160deg, rgba(28, 26, 22, 0.95), rgba(16, 15, 13, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease, width 0.5s ease;
  z-index: 2;
}

.room-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.12), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.room-card:hover .room-card-glow {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.15) 40%, rgba(255, 255, 255, 0.08) 60%, rgba(212, 175, 55, 0.4));
}

.room-card:hover::before {
  opacity: 1;
  width: 80%;
}

/* --- Highlight card (24 Hours) --- */
.room-card--highlight {
  transform: scale(1.04);
  z-index: 2;
}

.room-card--highlight .room-card-inner {
  background: linear-gradient(160deg, rgba(40, 34, 18, 0.97), rgba(22, 19, 12, 0.99));
}

.room-card--highlight .room-card-glow,
.room-card-glow--gold {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0.1) 40%, rgba(255, 255, 255, 0.05) 60%, rgba(212, 175, 55, 0.35));
}

.room-card--highlight::before {
  opacity: 1;
  width: 70%;
}

.room-card--highlight::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1), transparent 60%);
  pointer-events: none;
}

.room-card--highlight:hover {
  transform: scale(1.04) translateY(-12px);
}

.room-card--highlight:hover .room-card-glow {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.2) 40%, rgba(255, 255, 255, 0.1) 60%, rgba(212, 175, 55, 0.5));
}

/* --- Badge --- */
.badge-wrap {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e8c84a, #D4AF37, #b8962e);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

/* --- Icon --- */
.room-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.room-card:hover .room-icon-wrap {
  border-color: rgba(212, 175, 55, 0.25);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.room-icon-wrap--gold {
  border-color: rgba(212, 175, 55, 0.25);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.room-icon {
  width: 32px;
  height: 32px;
}

.room-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.room-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-bottom: 20px;
  opacity: 0.7;
}

.room-card-body {
  margin-bottom: 20px;
  flex-grow: 1;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.price-row:last-child {
  margin-bottom: 0;
}

.room-card:hover .price-row {
  background: rgba(212, 175, 55, 0.04);
}

.room-type {
  font-size: 0.88rem;
  color: var(--white-dim);
  font-weight: 500;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* --- Room button --- */
.room-btn {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.room-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-btn:hover::before {
  opacity: 1;
}

.room-btn:hover {
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.room-btn svg {
  transition: transform 0.3s ease;
}

.room-btn:hover svg {
  transform: translateX(4px);
}

/* ===== CTA SECTION ===== */
.cta {
  position: relative;
  padding: 120px 24px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(3px);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(18,18,18,0.95) 0%,
    rgba(18,18,18,0.7) 40%,
    rgba(18,18,18,0.7) 60%,
    rgba(18,18,18,0.95) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
}

.cta-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 400;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,18,18,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== INSTAGRAM FEED ===== */
.instagram-feed {
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.insta-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.insta-icon {
  flex-shrink: 0;
}

.insta-handle {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.insta-handle:hover {
  color: var(--gold-light);
}

.insta-follow-btn {
  flex-shrink: 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.insta-card:hover {
  transform: scale(1.03);
  border-color: rgba(212, 175, 55, 0.4);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-card:hover img {
  transform: scale(1.1);
}

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-card:hover .insta-card-overlay {
  opacity: 1;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--white-dim);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.review-stars-sm {
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
  font-style: italic;
}

.review-btn {
  display: inline-flex;
  margin: 0 auto;
}

.reviews .container {
  text-align: center;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 80px 0 0;
  background: var(--black);
}

.map-wrapper {
  margin-top: 8px;
  width: 100%;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.map-container {
  position: relative;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  filter: grayscale(0.3) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: grayscale(0) contrast(1);
}

.map-overlay-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-decoration: none;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.map-open-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 300px;
}

.footer-contact h3,
.footer-hours h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
  padding: 6px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: gentlePulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.6) 0%, rgba(18, 18, 18, 0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.breadcrumb {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--white-dim);
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ===== CONTENT SECTIONS (Inner Pages) ===== */
.content-section {
  padding: 80px 0;
}

.content-section--alt {
  background: linear-gradient(180deg, var(--black-light), var(--black));
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.content-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 24px;
}

.content-text p {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.content-text ul li {
  font-size: 0.9rem;
  color: var(--white-dim);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.content-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.content-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.content-img-grid .content-img {
  aspect-ratio: 1/1;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.6);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--white-dim);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-detail:hover {
  color: var(--gold);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(0.8) contrast(1.1);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE — Mobile-first breakpoints
   320px (base) → 375px → 768px → 992px → desktop
   ========================================================== */

/* ---------- max-width: 992px  (tablets landscape) ---------- */
@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .room-card--highlight {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .rooms {
    padding: 70px 0;
  }

  .rooms-bg-glow {
    width: 600px;
    height: 400px;
  }

  .gallery {
    padding: 80px 0;
  }

  .instagram-feed {
    padding: 80px 0;
  }

  .reviews {
    padding: 80px 0;
  }

  .map-section {
    padding: 60px 0 0;
  }

  .contact-grid {
    gap: 36px;
  }
}

/* ---------- max-width: 768px  (tablets portrait / large phones) ---------- */
@media (max-width: 768px) {

  /* --- Container --- */
  .container {
    padding: 0 16px;
  }

  /* --- Header & Hamburger Menu --- */
  .header-inner {
    height: 60px;
    padding: 0 16px;
  }

  .header-logo img {
    width: 38px;
    height: 38px;
  }

  .header-logo-text {
    font-size: 1.05rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    padding: 8px;
  }

  .menu-toggle span {
    width: 22px;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav.open {
    max-height: 400px;
    padding: 12px 0;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* dynamic viewport for mobile browser chrome */
  }

  .hero-content {
    padding: 16px;
    max-width: 100%;
  }

  .hero-emblem {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-arrow {
    width: 18px;
    height: 18px;
  }

  /* --- Buttons global --- */
  .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  .btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  /* --- Section titles --- */
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  /* --- Rooms / Pricing --- */
  .rooms {
    padding: 60px 0;
  }

  .rooms-bg-glow {
    width: 400px;
    height: 300px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 18px;
  }

  .room-card--highlight {
    grid-column: auto;
    max-width: none;
    transform: scale(1);
  }

  .room-card--highlight:hover {
    transform: translateY(-10px);
  }

  .room-card-inner {
    padding: 36px 24px 24px;
  }

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

  .room-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .room-icon {
    width: 34px;
    height: 34px;
  }

  .room-desc {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }

  .room-card-body {
    margin-bottom: 20px;
  }

  .price-row {
    padding: 11px 14px;
  }

  .room-type {
    font-size: 0.85rem;
  }

  .room-price {
    font-size: 1.35rem;
  }

  .badge {
    font-size: 0.6rem;
    padding: 5px 14px;
  }

  /* --- Inner Pages --- */
  .page-hero {
    min-height: 260px;
    padding: 100px 16px 40px;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-grid--reverse {
    direction: ltr;
  }

  .content-section {
    padding: 60px 0;
  }

  .faq {
    padding: 60px 0;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 16px 18px;
  }

  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 0.84rem;
  }

  .contact-map iframe {
    height: 280px;
  }

  /* --- CTA / Decoration --- */
  .cta {
    padding: 80px 16px;
    min-height: 60vh;
  }

  .cta-badge {
    font-size: 0.65rem;
    padding: 5px 14px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding: 0 4px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .cta-feature {
    font-size: 0.8rem;
  }

  /* --- Gallery --- */
  .gallery {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .gallery-overlay {
    padding: 10px;
    opacity: 1; /* always show labels on touch devices */
    background: linear-gradient(180deg, transparent 60%, rgba(18,18,18,0.8) 100%);
  }

  .gallery-overlay span {
    font-size: 0.75rem;
  }

  /* --- Instagram Feed --- */
  .instagram-feed {
    padding: 60px 0;
  }

  .insta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .insta-title-row {
    gap: 12px;
  }

  .insta-title-row .section-title {
    font-size: 1.25rem;
    text-align: left;
  }

  .insta-icon {
    width: 28px;
    height: 28px;
  }

  .insta-handle {
    font-size: 0.85rem;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .insta-card {
    border-radius: 8px;
  }

  .insta-card-overlay {
    opacity: 0;
  }

  /* --- Reviews --- */
  .reviews {
    padding: 50px 0;
  }

  .reviews-rating {
    margin-bottom: 24px;
    gap: 4px;
  }

  .reviews-stars svg {
    width: 20px;
    height: 20px;
  }

  .reviews-score {
    font-size: 1.3rem;
  }

  .reviews-count {
    font-size: 0.72rem;
  }

  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin: 0 -16px 24px;
    padding: 0 16px 12px;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 16px;
  }

  .review-header {
    gap: 10px;
    margin-bottom: 10px;
  }

  .review-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .review-name {
    font-size: 0.8rem;
  }

  .review-stars-sm svg {
    width: 11px;
    height: 11px;
  }

  .review-text {
    font-size: 0.78rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-btn {
    font-size: 0.8rem;
  }

  /* --- Map --- */
  .map-section {
    padding: 50px 0 0;
  }

  .map-section .section-subtitle {
    font-size: 0.78rem;
    line-height: 1.5;
    padding: 0 4px;
  }

  .map-container iframe {
    height: 280px;
  }

  .map-open-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .map-open-btn svg {
    width: 14px;
    height: 14px;
  }

  .map-overlay-link {
    bottom: 14px;
  }

  /* --- Footer --- */
  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
  }

  .footer-desc {
    font-size: 0.82rem;
    margin: 0 auto;
    max-width: 280px;
  }

  .footer-contact h3,
  .footer-hours h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-link {
    justify-content: center;
    font-size: 0.85rem;
    padding: 5px 0;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.72rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon svg {
    width: 17px;
    height: 17px;
  }

  /* --- Floating WhatsApp --- */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ---------- max-width: 375px  (standard phones – iPhone SE / 12 mini) --- */
@media (max-width: 375px) {

  .container {
    padding: 0 14px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .header-logo img {
    width: 34px;
    height: 34px;
  }

  .header-logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .hero-emblem {
    width: 95px;
    height: 95px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .hero-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
  }

  .hero-buttons .btn {
    max-width: 260px;
    padding: 11px 20px;
    font-size: 0.82rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-subtitle {
    font-size: 0.78rem;
    margin-bottom: 24px;
  }

  .rooms {
    padding: 48px 0;
  }

  .rooms-grid {
    max-width: 100%;
    gap: 14px;
  }

  .room-card-inner {
    padding: 30px 18px 20px;
  }

  .room-card-header h3 {
    font-size: 1.2rem;
  }

  .room-icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }

  .room-icon {
    width: 30px;
    height: 30px;
  }

  .room-desc {
    font-size: 0.75rem;
    margin-bottom: 14px;
  }

  .room-type {
    font-size: 0.8rem;
  }

  .room-price {
    font-size: 1.2rem;
  }

  .price-row {
    padding: 9px 12px;
  }

  .badge {
    font-size: 0.55rem;
    padding: 4px 12px;
  }

  .room-btn {
    padding: 12px 20px;
    font-size: 0.82rem;
  }

  .cta {
    padding: 60px 14px;
    min-height: 50vh;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-subtitle {
    font-size: 0.82rem;
  }

  .gallery {
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 8px;
  }

  .gallery-item {
    border-radius: 6px;
  }

  .gallery-overlay span {
    font-size: 0.68rem;
  }

  .instagram-feed {
    padding: 48px 0;
  }

  .insta-title-row .section-title {
    font-size: 1.1rem;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .insta-card {
    border-radius: 6px;
  }

  .reviews {
    padding: 40px 0;
  }

  .reviews-score {
    font-size: 1.2rem;
  }

  .reviews-stars svg {
    width: 18px;
    height: 18px;
  }

  .reviews-grid {
    margin: 0 -14px 20px;
    padding: 0 14px 10px;
    gap: 10px;
  }

  .review-card {
    flex: 0 0 250px;
    padding: 14px;
  }

  .review-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .review-name {
    font-size: 0.75rem;
  }

  .review-text {
    font-size: 0.72rem;
    -webkit-line-clamp: 3;
  }

  .map-section {
    padding: 40px 0 0;
  }

  .map-section .section-subtitle {
    font-size: 0.72rem;
  }

  .map-container iframe {
    height: 240px;
  }

  .map-open-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .footer-top {
    padding: 32px 0 24px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .footer-desc {
    font-size: 0.78rem;
  }

  .footer-contact h3,
  .footer-hours h3 {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .footer-socials {
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 14px;
    right: 14px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

/* ---------- max-width: 320px  (smallest phones – iPhone SE 1st gen) ----- */
@media (max-width: 320px) {

  .container {
    padding: 0 12px;
  }

  .header-inner {
    height: 54px;
    padding: 0 12px;
  }

  .nav {
    top: 54px;
  }

  .header-logo img {
    width: 30px;
    height: 30px;
  }

  .header-logo-text {
    font-size: 0.85rem;
  }

  .hero-emblem {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 0.72rem;
    margin-bottom: 20px;
  }

  .hero-buttons .btn {
    max-width: 240px;
    padding: 10px 16px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .hero-buttons .btn svg {
    width: 16px;
    height: 16px;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .section-subtitle {
    font-size: 0.72rem;
    margin-bottom: 20px;
  }

  .rooms {
    padding: 36px 0;
  }

  .room-card-inner {
    padding: 26px 14px 18px;
  }

  .room-card {
    border-radius: 16px;
  }

  .room-card-glow {
    border-radius: 16px;
  }

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

  .room-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .room-icon {
    width: 26px;
    height: 26px;
  }

  .room-desc {
    font-size: 0.7rem;
  }

  .room-type {
    font-size: 0.75rem;
  }

  .room-price {
    font-size: 1.1rem;
  }

  .price-row {
    padding: 8px 10px;
    margin-bottom: 6px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.78rem;
  }

  .btn-sm {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .cta {
    padding: 50px 12px;
  }

  .cta-title {
    font-size: 1.15rem;
  }

  .cta-subtitle {
    font-size: 0.78rem;
  }

  .cta-badge {
    font-size: 0.6rem;
    padding: 4px 12px;
  }

  .cta-feature {
    font-size: 0.72rem;
  }

  .gallery {
    padding: 40px 0;
  }

  .gallery-grid {
    grid-auto-rows: 120px;
    gap: 6px;
  }

  .instagram-feed {
    padding: 40px 0;
  }

  .insta-title-row .section-title {
    font-size: 1rem;
  }

  .insta-handle {
    font-size: 0.78rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .insta-follow-btn {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .reviews {
    padding: 32px 0;
  }

  .reviews-score {
    font-size: 1.1rem;
  }

  .reviews-grid {
    margin: 0 -12px 16px;
    padding: 0 12px 8px;
    gap: 8px;
  }

  .review-card {
    flex: 0 0 220px;
    padding: 12px;
  }

  .review-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .review-text {
    font-size: 0.68rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .map-container iframe {
    height: 200px;
  }

  .map-open-btn {
    padding: 7px 14px;
    font-size: 0.7rem;
  }

  .footer-top {
    padding: 28px 0 20px;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .footer-desc {
    font-size: 0.72rem;
    max-width: 240px;
  }

  .footer-link {
    font-size: 0.75rem;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .whatsapp-float {
    width: 42px;
    height: 42px;
    bottom: 12px;
    right: 12px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}
