/* ============================================================
   VIRAT SHREE PALACE — Premium Hotel Theme
   Brand: Black #0D0D0D · Gold #EFC01A · Ivory #FAFAF5
   ============================================================ */

/* ── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: #FAFAF5;
  color: #1A1208;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --black:       #0D0D0D;
  --gold:        #EFC01A;
  --gold-dark:   #C9A010;
  --gold-pale:   #FDF3CC;
  --ivory:       #FAFAF5;
  --parchment:   #F2EAD5;
  --charcoal:    #1E1C18;
  --text:        #1A1208;
  --muted:       #7A6A50;
  --border:      #E4DACE;
  --white:       #FFFFFF;
  --nav-h:       72px;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.14);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Container System ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 48px;
}
.container-sm {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 48px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 48px;
}
@media (max-width: 1024px) {
  .container, .container-sm, .container-wide { padding-inline: 32px; }
}
@media (max-width: 640px) {
  .container, .container-sm, .container-wide { padding-inline: 20px; }
}

/* ── Typography Scale ────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  text-wrap: balance;
}
.display-xl {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.display-lg {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
}
.display-md {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
}
.display-sm { font-size: clamp(20px, 3vw, 28px); font-weight: 600; }
.body-lg  { font-size: 17px; line-height: 1.75; color: var(--muted); }
.body-md  { font-size: 15px; line-height: 1.75; color: var(--muted); }
.caption  { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ── Section Spacing ─────────────────────────────────────── */
.section { padding-block: 100px; }
.section-sm { padding-block: 64px; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-parchment { background: var(--parchment); }
.section-black { background: var(--black); color: var(--white); }
.section-gold { background: var(--gold); color: var(--black); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover { background: #333; }

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

.btn-outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-wa {
  background: #22C55E;
  color: var(--white);
}
.btn-wa:hover { background: #16A34A; }

.w-full { width: 100%; justify-content: center; }

/* ── Navigation ──────────────────────────────────────────── */
#vsp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s var(--ease);
}
#vsp-nav.elevated { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 32px;
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav-brand-text { text-align: left; }
.nav-brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-brand-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(239,192,26,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #22C55E;
  transition: background 0.2s;
}
.nav-wa:hover { background: rgba(34,197,94,0.25); }
.nav-wa .material-symbols-outlined { font-size: 20px; }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.nav-mobile.open { max-height: 500px; }
.mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:hover, .mobile-link.active { color: var(--gold); padding-left: 40px; }
.mobile-cta-row { padding: 20px 32px 24px; }

/* ── Page offset ─────────────────────────────────────────── */
#vsp-main { padding-top: var(--nav-h); }
.vsp-tab { display: none; }
.vsp-tab.active { display: block; }

/* ═══════════════════════════════════════════════════════════
   HOME TAB
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,2,0.92) 0%,
    rgba(10,8,2,0.55) 50%,
    rgba(10,8,2,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7.5vw, 96px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 800px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 2;
  display: flex;
  background: var(--gold);
}
.hero-stat {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hero-stat span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ── Quick Search ─────────────────────────────────────────── */
.search-strip {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.search-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
  min-height: 72px;
}
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 28px;
  border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  width: 100%;
}
.search-btn {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 36px;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--gold); color: var(--black); }

/* ── About Split ──────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split-img {
  position: relative;
}
.about-split-img .img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-split-img .img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-split-img .img-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.about-split-img .img-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.about-text { padding-left: 16px; }
.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.perk .material-symbols-outlined { font-size: 20px; color: var(--gold-dark); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 28px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 14px; }

/* ── Amenity Strip ────────────────────────────────────────── */
.amenity-strip {
  background: var(--black);
  padding-block: 48px;
}
.amenity-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.amenity-strip-item .material-symbols-outlined {
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.amenity-strip-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.amenity-strip-item p { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── Rooms Preview (Home) ─────────────────────────────────── */
.rooms-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.room-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--black);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.room-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.room-card-body p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.room-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: var(--parchment);
  padding: 5px 10px;
  border-radius: 20px;
}
.feat-chip .material-symbols-outlined { font-size: 14px; color: var(--gold-dark); }
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.room-price sup { font-size: 14px; font-weight: 600; color: var(--gold-dark); }
.room-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.room-price-night { font-size: 12px; color: var(--muted); display: block; }

/* ── Attractions ──────────────────────────────────────────── */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.attraction-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}
.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.attraction-card:hover img { transform: scale(1.06); }
.attraction-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,2,0.9) 0%, rgba(10,8,2,0.2) 60%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.attraction-dist {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.attraction-card-overlay h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.attraction-card-overlay p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-wrap { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════════════════════
   ROOMS TAB
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,2,0.85) 0%, rgba(10,8,2,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 52px;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); }
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 16px; margin-top: 8px; max-width: 480px; }

/* Room Detail Cards */
.room-detail-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.room-detail-gallery { display: flex; flex-direction: column; }
.room-detail-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-detail-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  cursor: zoom-in;
}
.room-detail-main img:hover { transform: scale(1.04); }
.room-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--parchment);
}
.room-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
}
.room-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.3s var(--ease);
}
.room-thumb:hover img { opacity: 1; transform: scale(1.08); }

.room-detail-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.room-size-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.room-detail-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 14px;
}
.room-detail-info .body-md { margin-bottom: 24px; }
.room-meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.room-meta-item .material-symbols-outlined { font-size: 18px; color: var(--gold-dark); }

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}
.room-amenity .material-symbols-outlined { font-size: 18px; color: var(--gold-dark); }

.room-price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.price-block label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.price-block .price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-block .price-night { font-size: 13px; color: var(--muted); }

/* Policies Grid */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.policy-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.policy-tile .material-symbols-outlined { font-size: 26px; color: var(--gold-dark); display: block; margin-bottom: 10px; }
.policy-tile strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.policy-tile p { font-size: 12px; color: var(--muted); }

/* Payment */
.payment-block {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}
.payment-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}
.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 4px;
}
.payment-chip .material-symbols-outlined { font-size: 18px; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FACILITIES TAB
   ═══════════════════════════════════════════════════════════ */
.facilities-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.facility-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.facility-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.facility-group-header .material-symbols-outlined { font-size: 24px; color: var(--gold-dark); }
.facility-group-header h3 { font-size: 18px; font-weight: 600; }
.facility-list { display: flex; flex-direction: column; gap: 11px; }
.facility-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.facility-list .icon-check {
  font-size: 17px;
  color: #22C55E;
  flex-shrink: 0;
}

/* Menu Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.menu-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 3px;
}
.menu-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.menu-card-body h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.menu-card-body p { font-size: 12px; color: var(--muted); line-height: 1.6; flex: 1; }
.menu-price {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY TAB
   ═══════════════════════════════════════════════════════════ */
.gallery-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.gfilter {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
}
.gfilter.active, .gfilter:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,2,0.55);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: var(--white); font-size: 16px; font-weight: 600; }
.gallery-item-overlay p { color: rgba(255,255,255,0.75); font-size: 12px; margin-top: 4px; }
.gallery-item.hidden { display: none; }

/* ═══════════════════════════════════════════════════════════
   ABOUT TAB
   ═══════════════════════════════════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-story-img { position: relative; }
.about-story-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-story-img-accent {
  position: absolute;
  bottom: 32px;
  right: -32px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-story-img-accent strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.about-story-img-accent span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-story-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-card .material-symbols-outlined { font-size: 22px; color: var(--gold-dark); flex-shrink: 0; }
.value-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.value-card p { font-size: 12px; color: var(--muted); }

.highlights-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.highlight-tile {
  background: var(--white);
  padding: 28px 16px;
  text-align: center;
}
.highlight-tile strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.highlight-tile span { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 6px; display: block; }

.tags-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--parchment);
  border: 1px solid var(--border);
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT TAB
   ═══════════════════════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon .material-symbols-outlined { font-size: 22px; color: var(--gold-dark); }
.contact-detail-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.contact-detail-item a,
.contact-detail-item p { font-size: 14px; color: var(--muted); }
.contact-detail-item a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 28px; font-weight: 600; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.map-wrap { margin-top: 56px; }
.map-wrap h3 { font-size: 28px; font-weight: 600; margin-bottom: 20px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════
   ENQUIRY DRAWER
   ═══════════════════════════════════════════════════════════ */
.vsp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.vsp-overlay.open { opacity: 1; pointer-events: all; }

.enquiry-drawer {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: min(460px, 100vw);
  background: var(--ivory);
  z-index: 960;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -8px 0 64px rgba(0,0,0,0.22);
}
.enquiry-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: var(--black);
}
.drawer-head-logo { display: flex; align-items: center; gap: 12px; }
.drawer-head-logo img { width: 40px; height: 40px; border-radius: 50%; }
.drawer-head-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.drawer-head-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.drawer-close {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.drawer-close:hover { background: rgba(255,255,255,0.18); }

.drawer-body { flex: 1; overflow-y: auto; padding: 28px; }

.enquiry-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.enquiry-success.show { display: block; }
.success-checkmark {
  width: 64px; height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px; color: #16A34A;
}
.enquiry-success h4 { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.enquiry-success p { font-size: 14px; color: var(--muted); }

.drawer-foot {
  padding: 18px 28px;
  background: var(--black);
  text-align: center;
}
.drawer-foot span { display: block; font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 4px; letter-spacing: 0.1em; }
.drawer-foot a { font-size: 16px; font-weight: 700; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 88vh; }
.lightbox-inner img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 6px; }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-top: 14px;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 24px; border-radius: 50%; }
.lb-prev  { top: 50%; left: 16px;  transform: translateY(-50%); width: 48px; height: 64px; font-size: 36px; }
.lb-next  { top: 50%; right: 16px; transform: translateY(-50%); width: 48px; height: 64px; font-size: 36px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.vsp-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.footer-logo-text .brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text .brand-loc { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.footer-desc { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.5); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-links button {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-align: left;
  transition: color 0.2s, padding-left 0.2s;
  font-family: 'Jost', sans-serif;
}
.footer-nav-links button:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item .material-symbols-outlined { font-size: 18px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a, .footer-contact-item p { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 20px;
}
.footer-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links span { cursor: default; }

/* ── Enquiry Overlay (footer.php uses .enquiry-overlay) ──── */
.enquiry-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.enquiry-overlay.open { opacity: 1; pointer-events: all; }

/* ── Drawer header extras ────────────────────────────────── */
.drawer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.drawer-logo img { border-radius: 50%; }
.drawer-logo span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.drawer-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--white); }
.drawer-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── Drawer footer link layout ───────────────────────────── */
.drawer-foot { display: flex; justify-content: center; gap: 24px; }
.drawer-foot a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.05em;
}
.drawer-foot a .material-symbols-outlined { font-size: 20px; }

/* ── Lightbox image wrap ─────────────────────────────────── */
.lb-img-wrap { max-width: 90vw; max-height: 88vh; text-align: center; }
.lb-img-wrap img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 6px; display: block; }
.lb-caption { text-align: center; color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 12px; }

/* ── Footer new grid classes ─────────────────────────────── */
.footer-brand-col { display: flex; flex-direction: column; }
.footer-brand {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.footer-brand img { border-radius: 50%; object-fit: cover; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--white);
}
.footer-brand-tagline { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; margin-top: 2px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col ul li button,
.footer-links-col ul li span {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px; color: rgba(255,255,255,0.55); text-align: left;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.footer-links-col ul li button:hover { color: var(--gold); padding-left: 6px; }
.footer-col-heading {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-contact-col { display: flex; flex-direction: column; }
.footer-wa { display: inline-flex; margin-top: 24px; }

/* ── Room card size pill ─────────────────────────────────── */
.room-card-size {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.65); color: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 3px;
}
/* room-card-feats alias for room-feats */
.room-card-feats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.btn-sm { font-size: 11px; padding: 10px 18px; }

/* ── About section mb utility ────────────────────────────── */
.mb-4 { margin-bottom: 16px; }

/* ─── Contact success (contact-form card) ─────────────────── */
#contact-success { display: none; }

/* ── Floating WhatsApp Button ────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22C55E;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(34,197,94,0.45);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(34,197,94,0.55);
}
.wa-fab-label { white-space: nowrap; }

/* ── Footer contrast fix ─────────────────────────────────── */
.vsp-footer {
  background: #111111;
}
.footer-desc { color: rgba(255,255,255,0.65); }
.footer-links-col ul li button,
.footer-links-col ul li span { color: rgba(255,255,255,0.65); }
.footer-contact-item a,
.footer-contact-item p,
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 13.5px; }
.footer-bottom { color: rgba(255,255,255,0.45); }

/* ── Temple card text-only style ─────────────────────────── */
.attraction-card-text { cursor: default; }
.attraction-card-text:hover img { transform: none; }
.attraction-card-text .attraction-card-overlay h3 { font-size: 26px; }
.attraction-card-text .attraction-card-overlay p { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.gap-section { margin-bottom: 80px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .amenity-strip-grid    { grid-template-columns: repeat(3, 1fr); }
  .facilities-cols       { grid-template-columns: repeat(2, 1fr); }
  .menu-grid             { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 40px; }
  .highlights-row        { grid-template-columns: repeat(3, 1fr); }
  .policies-grid         { grid-template-columns: repeat(4, 1fr); }
  .gallery-masonry       { columns: 2; }
}
@media (max-width: 900px) {
    .nav-container {
    justify-content: space-between;
}
    button.nav-cta {
    display: none;
}
  .nav-links             { display: none; }
  .nav-hamburger         { display: flex; }
  .nav-mobile            { display: flex; }
  .about-split           { grid-template-columns: 1fr; gap: 40px; }
  .about-split-img .img-badge { right: 0; }
  .room-detail-card      { grid-template-columns: 1fr; }
  .about-story-grid      { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img-accent { right: 0; bottom: 0; }
  .contact-split         { grid-template-columns: 1fr; }
  .attractions-grid      { grid-template-columns: 1fr 1fr; }
  .rooms-preview-grid    { grid-template-columns: 1fr; }
  .about-values-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section, .section-sm { padding-block: 56px; }
  .hero-stats            { display: none; }
  .hero-title            { font-size: clamp(36px, 10vw, 56px); }
  .search-inner          { grid-template-columns: 1fr; }
  .search-field          { border-right: none; border-bottom: 1px solid var(--border); }
  .search-btn            { border-radius: 0 0 var(--radius) var(--radius); padding: 16px; }
  .amenity-strip-grid    { grid-template-columns: repeat(2, 1fr); }
  .menu-grid             { grid-template-columns: 1fr; }
  .facilities-cols       { grid-template-columns: 1fr; }
  .attractions-grid      { grid-template-columns: 1fr; }
  .policies-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom         { flex-direction: column; gap: 10px; text-align: center; }
  .form-row              { grid-template-columns: 1fr; }
  .gallery-masonry       { columns: 1; }
  .highlights-row        { grid-template-columns: repeat(2, 1fr); }
  .page-hero             { height: 300px; }
  .hero-actions          { flex-direction: column; }
}
