:root {
  /* Palette drawn from the property itself — Jaisalmer sandstone facade,
     teal lobby upholstery, brass fittings. */
  --bg: #F7F2E9;
  --bg-alt: #EFE6D6;
  --ink: #22201B;
  --ink-soft: #4E4940;
  --muted: #8A8071;
  --accent: #1F5F5B;
  --accent-dark: #164543;
  --line: rgba(34, 32, 27, 0.12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ───────── Nav ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(247, 242, 233, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.nav.scrolled .logo,
.nav.solid .logo { color: var(--ink); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav.scrolled .nav-links a,
.nav.solid .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--accent-dark);
  color: var(--bg);
  border-color: var(--accent-dark);
}

.nav-cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 13px 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.nav.scrolled .nav-cta,
.nav.solid .nav-cta {
  color: var(--ink);
  border-color: var(--ink);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  font-size: 18px;
}
.nav.scrolled .menu-toggle,
.nav.solid .menu-toggle { color: var(--ink); }

/* ───────── Hero (homepage) ───────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/property-reception-lobby-3.jpg');
  background-size: cover; background-position: center;
  z-index: 1;
}
/* A brand-tinted, cinematic wash — dark teal-ink veil for a premium mood and
   legible white type, with a soft vignette drawing the eye to the centre. */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,24,23,0.52) 0%, rgba(14,19,18,0.46) 45%, rgba(9,13,12,0.74) 100%),
    radial-gradient(135% 105% at 50% 40%, rgba(0,0,0,0) 34%, rgba(9,13,12,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0.92;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ───────── Page hero (inner pages) ───────── */
.page-hero {
  position: relative;
  min-height: 60vh;
  padding: 200px 0 100px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  max-width: 760px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; }
.page-hero p {
  font-size: 17px;
  max-width: 560px;
  opacity: 0.92;
  line-height: 1.7;
}

/* ───────── Section base ───────── */
section { padding: 120px 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; }
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.75;
}

/* ───────── Welcome (image + text) ───────── */
.welcome { background: var(--bg); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.welcome-image img { width: 100%; height: 100%; object-fit: cover; }
.welcome-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.welcome-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.welcome-meta-item .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.welcome-meta-item .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── Rooms ───────── */
.rooms { background: var(--bg-alt); }
.rooms-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(31,38,32,0.18);
}
.room-img { aspect-ratio: 4/3; overflow: hidden; }
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.04); }
.room-body { padding: 28px; }
.room-body h3 { font-size: 24px; margin-bottom: 8px; }
.room-rate {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.room-desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.room-features li {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.room-link {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  transition: color 0.25s, border-color 0.25s;
}
.room-link:hover { color: var(--accent); border-color: var(--accent); }

/* Room detail rows (rooms.html) */
.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.room-row:last-child { margin-bottom: 0; }
.room-row.reverse .room-row-image { order: 2; }
.room-row-image { aspect-ratio: 4/3; overflow: hidden; }
.room-row-image img { width: 100%; height: 100%; object-fit: cover; }
.room-row-body h2 { font-size: clamp(32px, 3.5vw, 44px); margin-bottom: 12px; }
.room-row-body h2 em { font-style: italic; }
.room-row-body .room-rate { font-size: 14px; margin-bottom: 24px; }
.room-row-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.room-spec-list {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.room-spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.room-spec-list li .lbl {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.room-spec-list li .val { color: var(--ink); }
.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 32px;
}
.room-amenities li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.room-amenities li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ───────── Experience / Facilities ───────── */
.experience { background: var(--bg); text-align: center; }
.experience-header { max-width: 620px; margin: 0 auto 72px; }
.experience-header .section-intro { margin: 0 auto; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
}
.facility { padding-top: 28px; border-top: 1px solid var(--line); }
.facility-icon { width: 40px; height: 40px; margin-bottom: 24px; color: var(--accent); }
.facility h3 { font-size: 22px; margin-bottom: 12px; }
.facility p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; }

/* Detailed facility row (facilities.html) */
.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.facility-row:last-child { margin-bottom: 0; }
.facility-row.reverse .facility-row-image { order: 2; }
.facility-row-image { aspect-ratio: 4/3; overflow: hidden; }
.facility-row-image img { width: 100%; height: 100%; object-fit: cover; }
.facility-row-body h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
.facility-row-body h2 em { font-style: italic; }
.facility-row-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.facility-row-body ul {
  list-style: none;
  margin-top: 24px;
}
.facility-row-body ul li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.facility-row-body ul li:last-child { border-bottom: 1px solid var(--line); }

/* ───────── Gallery (homepage) ───────── */
.gallery { background: var(--bg-alt); padding: 120px 0; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid > .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > .gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-grid > .gallery-item:nth-child(3),
.gallery-grid > .gallery-item:nth-child(4) { grid-column: span 1; }

/* Full gallery page (gallery.html) */
.gallery-section { background: var(--bg); padding: 100px 0; }
.gallery-section + .gallery-section { padding-top: 0; }
.gallery-section-title {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.gallery-full .g-item { overflow: hidden; }
.gallery-full .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-full .g-item:hover img { transform: scale(1.04); }
/* Layout A: 8 / 4 split, two rows */
.gallery-full.layout-a .g-item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-full.layout-a .g-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-full.layout-a .g-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-full.layout-a .g-item:nth-child(4) { grid-column: span 8; aspect-ratio: 16/9; }
/* Layout B: trio of equal squares */
.gallery-full.layout-b .g-item { grid-column: span 4; aspect-ratio: 1/1; }
/* Layout C: 6/6 wide */
.gallery-full.layout-c .g-item { grid-column: span 6; aspect-ratio: 3/2; }

/* ───────── Location ───────── */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text h2 { margin-bottom: 24px; }
.location-text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.location-list { list-style: none; margin-bottom: 36px; }
.location-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.location-list li:last-child { border-bottom: 1px solid var(--line); }
.location-list .place { color: var(--ink); }
.location-list .dist { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; }
.location-image { aspect-ratio: 4/5; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }

/* ───────── Testimonials ───────── */
.testimonials { background: var(--bg-alt); text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  text-align: left;
}
.testimonial {
  background: var(--bg);
  padding: 44px;
  border-left: 2px solid var(--accent);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 300;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial .source {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── CTA Banner ───────── */
.cta-banner {
  position: relative;
  padding: 160px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/suite-cover-1.jpg');
  background-size: cover; background-position: center;
  z-index: 1;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(31, 38, 32, 0.55);
  z-index: 2;
}
.cta-banner .container { position: relative; z-index: 3; }
.cta-banner h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  margin-bottom: 20px;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p {
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: 0.92;
}

/* ───────── Contact ───────── */
.contact { background: var(--bg); padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: var(--bg-alt);
  padding: 48px;
}
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact-details h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-details .item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-details .item:last-of-type { border-bottom: 1px solid var(--line); }
.contact-details .item p {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-details .item span {
  color: var(--ink-soft);
  font-size: 14px;
  font-family: var(--sans);
}

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: var(--bg);
  font-size: 28px;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-bottom .powered { color: rgba(245, 241, 234, 0.5); }

/* Section-end CTA */
.section-cta {
  text-align: center;
  margin-top: 64px;
}

/* ───────── Responsive ───────── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .welcome-grid,
  .rooms-header,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-grid > .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid > .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-grid > .gallery-item:nth-child(3),
  .gallery-grid > .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  /* With the links hidden, space-between strands Book Now in the middle of the
     bar. Push it to the right so it sits in a tight group beside the ☰ toggle. */
  .nav-cta { margin-left: auto; }
  .menu-toggle { margin-left: 14px; }

  /* Open state for the ☰ menu — the nav must go solid so the links are
     legible even while sitting over the hero image. */
  .nav-inner { flex-wrap: wrap; }
  .nav.menu-open {
    background: rgba(247, 242, 233, 0.98);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--line);
  }
  .nav.menu-open .logo,
  .nav.menu-open .menu-toggle,
  .nav.menu-open .nav-cta { color: var(--ink); }
  .nav.menu-open .nav-cta { border-color: var(--ink); }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    margin-top: 14px;
    padding-bottom: 6px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    width: 100%;
    padding: 15px 2px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    letter-spacing: 0.1em;
  }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open a.active { color: var(--accent); }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .room-row, .facility-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .room-row.reverse .room-row-image,
  .facility-row.reverse .facility-row-image { order: 0; }
  .room-amenities { grid-template-columns: 1fr; }

  .gallery-full.layout-a .g-item:nth-child(n),
  .gallery-full.layout-b .g-item,
  .gallery-full.layout-c .g-item { grid-column: span 12; aspect-ratio: 4/3; }

  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .hero { min-height: 560px; }
  .welcome-meta { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 100px 0; }
  .page-hero { padding: 160px 0 80px; min-height: 50vh; }

  /* At phone widths the logo + Book Now + toggle overflow one row and the
     toggle wraps onto its own line. Shrink them so the bar stays a single row. */
  .container { padding: 0 20px; }
  .logo { font-size: 20px; }
  .nav-cta { padding: 10px 14px; font-size: 11px; }
  .menu-toggle { font-size: 16px; }
}

/* ───────── Booking bar (DigiStay booking-engine deep link) ───────── */
.booking {
  position: relative;
  z-index: 5;
  margin-top: -62px;
  margin-bottom: 0;
  /* The base `section` rule pads 120px top AND bottom. The top pad, with the
     negative margin above, is what floats the card over the hero — keep it.
     The bottom pad is dead space under the card, so zero it and let the seam
     to Welcome be controlled deliberately below. */
  padding-bottom: 0;
  /* Clears the fixed nav when arriving via the #book anchor. */
  scroll-margin-top: 96px;
}
.booking + .welcome { padding-top: 48px; }
.booking-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 18px 50px rgba(34, 32, 27, 0.14);
  padding: 26px 28px;
}
.booking-form {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 0.9fr auto;
  gap: 22px;
  align-items: end;
}
.booking-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.booking-field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.booking-field input,
.booking-field select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 7px 0;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8071' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.booking-form .btn { white-space: nowrap; }
.booking-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.booking-note strong { color: var(--ink-soft); font-weight: 500; }

@media (max-width: 980px) {
  .booking { margin-top: -40px; margin-bottom: 0; }
  .booking-form { grid-template-columns: 1fr 1fr; gap: 20px; }
  .booking-form .btn { grid-column: 1 / -1; width: 100%; text-align: center; }
}
@media (max-width: 580px) {
  .booking { margin-top: 0; padding-top: 40px; margin-bottom: 0; }
  .booking-card { padding: 22px 20px; }
  .booking-form { grid-template-columns: 1fr; gap: 18px; }
}

/* ───────── Rate / spec helpers ───────── */
.room-rate .rate-note {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.room-card.is-hall .room-img {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hall-placeholder {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding: 0 24px;
}

/* ───────── Direct-booking assurance strip ───────── */
.assurance { padding: 96px 0; background: var(--bg-alt); }
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.assurance-item { text-align: center; }
.assurance-item .assurance-icon {
  width: 34px; height: 34px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.assurance-item h3 { font-size: 21px; margin-bottom: 10px; }
.assurance-item p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
@media (max-width: 980px) {
  .assurance { padding: 72px 0; }
  .assurance-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ───────── Policy list ───────── */
.policy-list { list-style: none; }
.policy-list li {
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
}
.policy-list li:last-child { border-bottom: 0; }
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 23px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ───────── Directions links (location list) ───────── */
.location-list .dir {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.location-list .dir:hover { color: var(--accent-dark); border-bottom-color: currentColor; }

/* ───────── Embedded map (contact page) ───────── */
.location-map { background: var(--bg-alt); }
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ───────── Reviews / feedback ───────── */
.reviews { background: var(--bg); text-align: center; }
.reviews-inner { max-width: 680px; margin: 0 auto; }
.reviews-inner .eyebrow,
.reviews-inner .section-title { display: block; }
.reviews-inner .section-intro { margin: 0 auto 36px; }
.reviews-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────── Floating actions — Book Now (primary) + WhatsApp ───────── */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-actions .fab {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 32, 27, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.floating-actions .fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(34, 32, 27, 0.34);
}
.floating-actions .fab svg { display: block; flex-shrink: 0; }
/* WhatsApp — the round secondary action */
.floating-actions .fab-whatsapp {
  width: 54px;
  border-radius: 50%;
  background: #25D366;
}
.floating-actions .fab-whatsapp svg { width: 27px; height: 27px; }
/* Book Now — the grounded primary CTA, in the brand ink so it reads first */
.floating-actions .fab-book {
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.floating-actions .fab-book svg { width: 19px; height: 19px; }
.floating-actions .fab-book:hover { background: var(--accent-dark); }
@media (max-width: 600px) {
  .floating-actions { right: 16px; bottom: 16px; gap: 10px; }
  .floating-actions .fab { height: 50px; }
  .floating-actions .fab-whatsapp { width: 50px; }
  .floating-actions .fab-whatsapp svg { width: 25px; height: 25px; }
  .floating-actions .fab-book { padding: 0 20px; font-size: 12px; }
}

/* ───────── Footer social (Instagram) ───────── */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(245, 241, 234, 0.75);
  transition: color 0.2s ease;
}
.footer-social:hover { color: var(--bg); }
.footer-social svg { width: 20px; height: 20px; flex-shrink: 0; }
