/* ==========================================================================
   Nangsa Homestay — Stylesheet
   --------------------------------------------------------------------------
   Mobile-first, hand-rolled CSS. No framework, no build step.
   Sections follow the order they appear in index.html so the file reads
   top-to-bottom alongside the markup.
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. CSS variables — palette inspired by the logo (cream / maroon / gold /
   forest green / charcoal). All other values reference these tokens so
   the theme can be re-skinned from one place.
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --c-cream:    #F5EDE0;
  --c-maroon:   #7A2E2E;
  --c-gold:     #D4A24C;
  --c-forest:   #2F4F3E;
  --c-charcoal: #1F1F1F;

  /* Functional aliases */
  --c-bg:       var(--c-cream);
  --c-bg-alt:   #FBF6EE;
  --c-text:     var(--c-charcoal);
  --c-text-mut: #5a5247;
  --c-border:   #e6dccb;

  /* Prayer-flag colours (used in the divider strip) */
  --pf-blue:   #2D6FB7;
  --pf-white:  #ffffff;
  --pf-red:    #C0392B;
  --pf-green:  #2E8B57;
  --pf-yellow: #F1C40F;

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spatial scale */
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow:    0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.14);

  --container: 1200px;
  --header-h:  72px;
}


/* --------------------------------------------------------------------------
   2. Reset + base typography
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Offset anchor jumps so they don't slide under the sticky header */
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--c-maroon);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; color: var(--c-charcoal); }
h4 { font-size: 1rem;  color: var(--c-charcoal); letter-spacing: .04em; text-transform: uppercase; }

p  { margin: 0 0 1em; }

a {
  color: var(--c-maroon);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover, a:focus { color: var(--c-gold); }

/* Visible focus ring — accessibility requirement */
:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-subheader { text-align: center; margin: 56px 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-lead {
  max-width: 640px;
  margin: 8px auto 0;
  color: var(--c-text-mut);
}


/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--c-maroon); color: #fff; }
.btn-primary:hover  { background: #642424; color: #fff; }

.btn-secondary { background: #25D366; color: #fff; }
.btn-secondary:hover { background: #1da851; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--c-maroon);
  border-color: var(--c-maroon);
}
.btn-outline:hover { background: var(--c-maroon); color: #fff; }

/* Header "Call Now" CTA — green, persistent, prominent */
.btn-call {
  background: var(--c-forest);
  color: #fff;
  font-size: .95rem;
  padding: 10px 16px;
}
.btn-call:hover { background: #243f31; color: #fff; }


/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 246, .96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-maroon);
  font-weight: 700;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}
.primary-nav a {
  color: var(--c-charcoal);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-charcoal);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* --------------------------------------------------------------------------
   5. Prayer-flag divider
   Five thin horizontal stripes evoking Tibetan Lung-ta flags.
   -------------------------------------------------------------------------- */
.prayer-flags {
  display: flex;
  height: 6px;
  width: 100%;
}
.prayer-flags .flag { flex: 1; }
.flag-blue   { background: var(--pf-blue); }
.flag-white  { background: var(--pf-white); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.flag-red    { background: var(--pf-red); }
.flag-green  { background: var(--pf-green); }
.flag-yellow { background: var(--pf-yellow); }


/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.45)),
    url("../images/exterior.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hero-overlay { display: none; } /* overlay handled inline via gradient */

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

.hero-title {
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 4px 16px rgba(0,0,0,.6);
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--c-gold);
  margin-bottom: 18px;
}
.hero-desc {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #f3ece0;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about { background: var(--c-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy p { color: var(--c-text-mut); font-size: 1.05rem; }
.about-copy strong { color: var(--c-maroon); }

.badges {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badges li {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-charcoal);
  box-shadow: var(--shadow-sm);
}
.badges li span { color: var(--c-gold); margin-right: 4px; }

.about-accent {
  display: flex;
  justify-content: center;
  color: var(--c-gold);
  opacity: .55;
}
.endless-knot { width: 200px; height: 200px; }


/* --------------------------------------------------------------------------
   8. Rooms & gallery
   -------------------------------------------------------------------------- */
.rooms { background: var(--c-bg-alt); }

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.room-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }

.room-body { padding: 18px 20px 22px; }
.room-body h3 { color: var(--c-maroon); margin-bottom: 6px; }
.room-body p  { color: var(--c-text-mut); font-size: .95rem; margin: 0; }

/* "Around the property" sub-grid */
.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.property-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.property-tile img {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0));
  color: #fff;
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   9. Amenities
   -------------------------------------------------------------------------- */
.amenities { background: var(--c-bg); }

.amenity-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amenity-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, border-color .15s ease;
}
.amenity-tile:hover { transform: translateY(-2px); border-color: var(--c-gold); }
.amenity-icon { font-size: 1.6rem; line-height: 1; }


/* --------------------------------------------------------------------------
   10. Location
   -------------------------------------------------------------------------- */
.location { background: var(--c-bg-alt); }
.address-line {
  font-size: 1.1rem;
  color: var(--c-charcoal);
  margin: 8px 0 20px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
}
.map-wrap iframe { display: block; }


/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact { background: var(--c-bg); }

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

.contact-info,
.contact-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info h3,
.contact-form h3 {
  color: var(--c-maroon);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--c-border);
  margin: 0;
}
.contact-row:last-of-type { border-bottom: none; }
.contact-label {
  flex: 0 0 90px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-mut);
}
.contact-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-row label {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-charcoal);
}
.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg-alt);
  transition: border-color .15s ease, background .15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: #fff;
}
.form-submit { width: 100%; margin-top: 8px; }
.form-status {
  margin: 12px 0 0;
  font-size: .9rem;
  min-height: 1.2em;
  color: var(--c-forest);
}
.form-status.error { color: var(--c-maroon); }


/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-charcoal);
  color: #d8d3c8;
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--c-gold);
  margin-bottom: 14px;
}
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-cream);
  margin-bottom: 8px;
}
.footer-blurb { color: #b9b2a3; font-size: .95rem; }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { padding: 4px 0; }
.footer-links a { color: #d8d3c8; }
.footer-links a:hover { color: var(--c-gold); }

.footer-nap address {
  font-style: normal;
  font-size: .95rem;
  color: #d8d3c8;
  line-height: 1.7;
}
.footer-nap address a { color: var(--c-cream); }
.footer-nap address a:hover { color: var(--c-gold); }
.footer-nap strong { color: var(--c-gold); font-weight: 600; }

.footer-base {
  border-top: 1px solid #2c2c2c;
  padding: 18px 0;
  font-size: .85rem;
  color: #9c9587;
  text-align: center;
}
.footer-base p { margin: 0; }
.footer-base .sep { margin: 0 8px; color: #6a6357; }
.footer-base .powered-by {
  color: var(--c-gold);
  font-weight: 600;
  position: relative;
  transition: color .15s ease;
}
.footer-base .powered-by::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.footer-base .powered-by:hover {
  color: #e8b76a;
}
.footer-base .powered-by:hover::after { transform: scaleX(1); }


/* --------------------------------------------------------------------------
   13. Floating WhatsApp button
   Direct-chat shortcut, pinned bottom-right. Pulse halo and a slide-in
   tooltip label make it impossible to miss without being intrusive.
   -------------------------------------------------------------------------- */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 4px 12px rgba(0,0,0,.2);
  z-index: 40;
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa:hover,
.float-wa:focus-visible {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .55), 0 6px 16px rgba(0,0,0,.25);
}
.float-wa-icon { display: block; }

/* Soft expanding pulse ring */
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* Tooltip label, slides in on hover (desktop only) */
.float-wa-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-charcoal);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: var(--shadow);
}
.float-wa-label::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--c-charcoal);
}
.float-wa:hover .float-wa-label,
.float-wa:focus-visible .float-wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Hide tooltip on small screens — the icon alone is enough there */
@media (max-width: 720px) {
  .float-wa-label { display: none; }
  .float-wa { width: 56px; height: 56px; bottom: 18px; right: 18px; }
}

/* Pause the pulse if the user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .float-wa-pulse { animation: none; opacity: .25; }
}


/* --------------------------------------------------------------------------
   13b. "Design & Development by" credits band
   Forest-green band sits between the main footer grid and the copyright
   base, attributing the developer with avatar, role, social icons,
   and CTA buttons (Quick Profile / Visit Portfolio).
   -------------------------------------------------------------------------- */
.dev-credit {
  background: var(--c-forest);
  color: #d8e3d6;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dev-credit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dev-credit-left  { flex: 1 1 auto; min-width: 260px; }
.dev-credit-right { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.dev-eyebrow {
  display: block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.dev-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Avatar — circular. Real photo goes in <img class="dev-avatar">.
   Fallback below is a CSS-rendered initials disc. */
.dev-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}
.dev-avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a6e57, #2F4F3E);
  color: var(--c-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .04em;
}

.dev-meta { display: flex; flex-direction: column; gap: 4px; }
.dev-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.dev-role {
  font-size: .9rem;
  color: #b6c8b8;
}

/* Social icons row (globe / whatsapp / phone) */
.dev-socials {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
}
.dev-socials a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #d8e3d6;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.dev-socials a:hover {
  background: var(--c-gold);
  color: var(--c-charcoal);
  transform: translateY(-1px);
}

/* Buttons used inside the dev-credit band */
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: 10px 22px;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: #fff;
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-gold);
  padding: 10px 22px;
  font-weight: 600;
}
.btn-gold:hover {
  background: #c0913f;
  color: var(--c-charcoal);
  border-color: #c0913f;
}

/* Stack the credit band vertically on mobile */
@media (max-width: 720px) {
  .dev-credit { padding: 24px 0; }
  .dev-credit-inner { flex-direction: column; align-items: flex-start; }
  .dev-credit-right { width: 100%; }
  .dev-credit-right .btn { flex: 1; text-align: center; }
  .dev-card { align-items: flex-start; }
}


/* --------------------------------------------------------------------------
   14. Scroll-reveal animation
   `.reveal` starts hidden; JS adds `.is-visible` when in viewport.
   Falls back gracefully if JS is disabled (see media query below).
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* If JS never loads, ensure content is still visible */
.no-js .reveal { opacity: 1; transform: none; }


/* --------------------------------------------------------------------------
   15. Responsive — tablet (≤960px)
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .room-grid    { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid   { grid-template-columns: 1fr; }
  .about-accent { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-nap   { grid-column: 1 / -1; }
}


/* --------------------------------------------------------------------------
   16. Responsive — mobile (≤720px)
   The desktop nav collapses behind a hamburger; the call CTA shrinks
   to an icon so it stays visible at small widths.
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  .section { padding: 56px 0; }

  .nav-toggle { display: block; }

  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .primary-nav.is-open { max-height: 400px; }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
  }
  .primary-nav li { border-bottom: 1px solid var(--c-border); }
  .primary-nav li:last-child { border-bottom: none; }
  .primary-nav a { display: block; padding: 14px 0; }

  /* Compact call button: keep the number tappable but trim the label */
  .btn-call { padding: 8px 12px; font-size: .85rem; }
  .btn-call-text { display: none; }
  .btn-call::after {
    content: "Call";
    font-weight: 600;
  }

  .room-grid,
  .amenity-grid,
  .property-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

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

  .hero { min-height: 80vh; padding: 60px 0; }

  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }

  .contact-info, .contact-form { padding: 24px; }

  .float-wa { width: 52px; height: 52px; font-size: 1.5rem; }
}


/* --------------------------------------------------------------------------
   17. Print — strip nav/decoration, keep NAP for paper bookings
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .float-wa, .map-wrap, .prayer-flags, .hero-ctas, .nav-toggle, .contact-form { display: none !important; }
  .hero { background: none !important; color: #000; min-height: auto; padding: 20px 0; }
  .hero-title, .hero-tagline { color: #000; text-shadow: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
