/* ============================================
   Terra Lanna — STAY PAGE
   Nampiangdin Boutique Hotel
   Theme: Dark Luxury — Void Black + Gold
   Aman / Rosewood Aesthetic
   ============================================ */

#page-stay {
  --sbg:     #08060A;
  --sbg2:    #0D0B12;
  --sbg3:    #110F18;
  --sgold:   #C49228;
  --sgold2:  #E0B040;
  --sgold3:  #F0C860;
  --sr:      #7B1818;
  --sivory:  #F5EDD8;
  --sivory2: rgba(245,237,216,.72);
  --sivory3: rgba(245,237,216,.40);
  --sbord:   rgba(196,146,40,.18);

  background: var(--sbg);
  font-family: var(--font-body);
  color: var(--sivory);
  overflow-x: hidden;
}

/* ---- SCROLL PROGRESS BAR ---- */
#stay-prog {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--sgold), var(--sgold3), var(--sgold));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
#page-stay:not(.active) #stay-prog { opacity: 0 !important; pointer-events: none !important; }

/* ---- STICKY CTA BAR ---- */
.stay-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,6,10,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--sbord);
  padding: .9rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 8888;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.stay-sticky-cta.is-visible { transform: translateY(0); }
#page-stay:not(.active) .stay-sticky-cta { transform: translateY(100%) !important; pointer-events: none !important; }
.stay-sticky-cta-text {
  font-family: 'Cormorant Garamond',serif;
  font-size: 1.05rem;
  color: var(--sivory2);
}
.stay-sticky-cta-text strong { color: var(--sivory); font-weight: 600; }
.stay-sticky-cta-btn {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--sgold); color: #08060A;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: .78rem 1.8rem; border-radius: 2px; text-decoration: none; white-space: nowrap;
  transition: background .22s, box-shadow .22s;
  flex-shrink: 0;
}
.stay-sticky-cta-btn:hover { background: var(--sgold2); box-shadow: 0 6px 24px rgba(196,146,40,.35); }
@media (max-width:580px) {
  .stay-sticky-cta { flex-direction: column; gap: .65rem; padding: .9rem 1.5rem; }
  .stay-sticky-cta-btn { width: 100%; justify-content: center; }
}

/* ==================================================
   LUXURY CURSOR (Stay page only)
   ================================================== */
body.lx-cursor-active,
body.lx-cursor-active * { cursor: none !important; }

#lx-cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
  background: var(--sgold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  opacity: 0; transition: width .2s, height .2s, background .2s, margin .2s;
  will-change: transform;
}
#lx-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1.5px solid rgba(196,146,40,.55); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  opacity: 0; transition: width .28s, height .28s, border-color .28s, background .28s, margin .28s;
  will-change: transform;
  display: flex; align-items: center; justify-content: center;
}
#lx-cursor-dot.is-hover  { width: 10px; height: 10px; margin: -5px 0 0 -5px; background: var(--sgold2); }
#lx-cursor-ring.is-hover { width: 52px; height: 52px; margin: -26px 0 0 -26px; border-color: rgba(196,146,40,.9); }
#lx-cursor-dot.is-view   { width: 4px; height: 4px; margin: -2px 0 0 -2px; }
#lx-cursor-ring.is-view  {
  width: 78px; height: 78px; margin: -39px 0 0 -39px;
  background: rgba(196,146,40,.08); border-color: rgba(196,146,40,.8);
}
#lx-cursor-ring.is-view::after {
  content: 'VIEW';
  font-size: .56rem; font-weight: 700; letter-spacing: .2em; color: rgba(196,146,40,.9);
}

/* ---- WORD CLIP REVEAL ---- */
.lx-word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.lx-word      { display: inline-block; }

/* ---- KEYFRAMES ---- */
@keyframes stayKenBurns {
  0%   { transform: scale(1.0) translate(0,0); }
  33%  { transform: scale(1.08) translate(-1%,.5%); }
  66%  { transform: scale(1.04) translate(1%,-.5%); }
  100% { transform: scale(1.0) translate(0,0); }
}
@keyframes stayHeroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stayScrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes stayGoldPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(196,146,40,.4); }
  50%      { box-shadow: 0 0 0 14px rgba(196,146,40,0); }
}
@keyframes stayLineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes stayGrainShift {
  0%   { transform: translate(0,0) rotate(0deg); }
  20%  { transform: translate(-2%,-1%) rotate(.3deg); }
  40%  { transform: translate(1.5%,2%) rotate(-.2deg); }
  60%  { transform: translate(-1%,1.5%) rotate(.15deg); }
  80%  { transform: translate(2%,-1.5%) rotate(-.3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}
@keyframes stayGoldShimmer {
  0%,100% { background-position: 200% center; }
  50%      { background-position: -200% center; }
}

/* ---- TYPOGRAPHY ---- */
#page-stay h1, #page-stay h2, #page-stay h3 {
  font-family: 'Cormorant Garamond','Lora',serif;
  letter-spacing: 0; text-transform: none;
  color: var(--sivory);
}
#page-stay p { line-height: 1.8; }

/* ---- CONTAINER ---- */
.stay-container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }
@media (max-width:768px) { .stay-container { padding: 0 1.5rem; } }

/* ---- EYEBROW ---- */
.stay-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sgold); margin-bottom: .9rem;
}
.stay-eyebrow-red {
  display: inline-block;
  font-size: .7rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sgold2); margin-bottom: .9rem;
}

/* ---- SECTION TITLE ---- */
.stay-section-title {
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; line-height: 1.15;
  margin: 0 0 1.1rem; color: var(--sivory);
}
.stay-section-title em { font-style: italic; color: var(--sgold); }

/* ---- BODY TEXT ---- */
.stay-body-text { font-size: 1rem; line-height: 1.85; color: var(--sivory2); max-width: 600px; }

/* ---- DIVIDER ---- */
.stay-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--sgold), transparent);
  margin: 1.4rem 0 2.5rem; transform-origin: left;
}
.stay-divider.visible { animation: stayLineGrow .6s cubic-bezier(.22,1,.36,1) both; }

/* ---- SCROLL REVEAL ---- */
.stay-fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.stay-fade-up.visible { opacity: 1; transform: none; }

/* ==================================================
   HERO — Full viewport, Ken Burns
   ================================================== */
.stay-hero {
  position: relative; height: 100vh;
  min-height: 580px; max-height: 980px;
  overflow: hidden; display: flex; align-items: center;
  background: var(--sbg);
}

/* Gold hairline top */
.stay-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sgold) 35%, var(--sgold3) 65%, transparent);
  z-index: 6;
}

/* Film grain texture — animated SVG noise */
.stay-hero::after {
  content: ''; position: absolute;
  inset: -25%; width: 150%; height: 150%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  pointer-events: none; z-index: 4;
  animation: stayGrainShift .1s steps(1) infinite;
  mix-blend-mode: overlay;
}

.stay-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  opacity: .28;
  animation: stayKenBurns 24s ease-in-out infinite;
  transform-origin: center;
}

/* Particles canvas */
#stay-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

.stay-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right, rgba(8,6,10,.95) 0%, rgba(8,6,10,.6) 55%, rgba(8,6,10,.15) 100%),
    linear-gradient(to top, rgba(8,6,10,.9) 0%, transparent 55%);
}

.stay-hero-content {
  position: relative; z-index: 3;
  padding: 0 4.5rem; max-width: 800px;
}
.stay-hero-content .stay-eyebrow {
  display: block; margin-bottom: 1.1rem;
  animation: stayHeroIn .8s cubic-bezier(.22,1,.36,1) .2s both;
}

.stay-hero-title {
  font-size: clamp(3.2rem,6.5vw,6rem);
  font-weight: 300; color: var(--sivory);
  line-height: 1.03; margin: 0 0 1.4rem;
}
.stay-hero-title em { color: var(--sgold); font-style: italic; }
.stay-hero-line       { display: block; overflow: hidden; }
.stay-hero-line-inner { display: block; }

.stay-hero-sub {
  color: var(--sivory2); font-size: 1.05rem;
  margin-bottom: 2.2rem; max-width: 480px; line-height: 1.78;
  animation: stayHeroIn .8s cubic-bezier(.22,1,.36,1) .6s both;
}

.stay-badges {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.6rem;
  animation: stayHeroIn .8s cubic-bezier(.22,1,.36,1) .75s both;
}
.stay-badge {
  background: rgba(196,146,40,.07);
  border: 1px solid rgba(196,146,40,.28);
  color: var(--sivory2);
  font-size: .67rem; letter-spacing: .1em;
  padding: .32rem .85rem; border-radius: 2px;
}

/* Hero CTA — ghost → fill on hover */
.stay-hero-cta {
  display: inline-flex; align-items: center; gap: .85rem;
  background: transparent;
  border: 1px solid rgba(196,146,40,.7);
  color: var(--sgold);
  font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  padding: 1.05rem 2.4rem; border-radius: 2px;
  text-decoration: none; position: relative; overflow: hidden;
  transition: color .35s;
  animation: stayHeroIn .8s cubic-bezier(.22,1,.36,1) .9s both,
             stayGoldPulse 3s ease-in-out 3.5s infinite;
}
.stay-hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sgold), var(--sgold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s cubic-bezier(.22,1,.36,1); z-index: -1;
}
.stay-hero-cta:hover { color: #08060A; border-color: var(--sgold); }
.stay-hero-cta:hover::before { transform: scaleX(1); }
.stay-hero-cta-arrow { font-size: 1.1rem; transition: transform .28s; }
.stay-hero-cta:hover .stay-hero-cta-arrow { transform: translateX(5px); }

/* Scroll indicator */
.stay-scroll-indicator {
  position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  z-index: 3; animation: stayHeroIn .8s ease 1.4s both; cursor: pointer;
}
.stay-scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(196,146,40,.3); border-radius: 11px; position: relative;
}
.stay-scroll-mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--sgold); border-radius: 2px;
  animation: stayScrollBounce 1.8s ease-in-out infinite;
}
.stay-scroll-label { font-size: .57rem; color: var(--sivory3); letter-spacing: .3em; text-transform: uppercase; }

@media (max-width:768px) {
  .stay-hero { max-height: unset; min-height: 100svh; }
  .stay-hero-content { padding: 0 1.5rem; }
  .stay-hero-title { font-size: clamp(2.8rem,9vw,3.8rem); }
  .stay-scroll-indicator { display: none; }
}

/* ==================================================
   SOCIAL PROOF STRIP
   ================================================== */
.stay-social-proof {
  background: var(--sbg2);
  border-top: 1px solid rgba(196,146,40,.1);
  border-bottom: 1px solid rgba(196,146,40,.08);
  padding: 1.4rem 0;
}
.stay-proof-inner {
  display: flex; align-items: center; gap: 3rem;
  justify-content: center; flex-wrap: wrap; padding: 0 3rem;
}
.stay-proof-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; color: var(--sivory2);
}
.stay-proof-score {
  font-family: 'Cormorant Garamond',serif;
  font-size: 1.5rem; font-weight: 600; color: var(--sgold); line-height: 1;
}
.stay-proof-label { font-size: .63rem; letter-spacing: .12em; color: var(--sivory3); display: block; text-transform: uppercase; margin-top: .1rem; }
.stay-proof-stars { color: var(--sgold); font-size: .72rem; letter-spacing: .06em; }
.stay-proof-sep { width: 1px; height: 2rem; background: rgba(196,146,40,.15); flex-shrink: 0; }
@media (max-width:640px) { .stay-proof-sep { display: none; } .stay-proof-inner { gap: 1.8rem; padding: 0 1.5rem; } }

/* ==================================================
   STATS STRIP
   ================================================== */
.stay-stats-strip {
  background: var(--sbg);
  border-top: 1px solid var(--sbord);
  border-bottom: 1px solid var(--sbord);
  padding: 0;
}
.stay-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stay-stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 3.2rem 1.5rem; position: relative; transition: background .25s;
}
.stay-stat-item:hover { background: rgba(196,146,40,.04); }
.stay-stat-item+.stay-stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(196,146,40,.14);
}
.stay-stat-num {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(3rem,4.5vw,4.8rem); font-weight: 300;
  color: var(--sgold); line-height: 1; margin-bottom: .6rem;
  display: flex; align-items: baseline; gap: .15rem;
}
.stay-stat-unit { font-size: 1.4rem; font-weight: 300; }
.stay-stat-label { font-size: .63rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--sivory3); }
@media (max-width:640px) {
  .stay-stats-grid { grid-template-columns: repeat(2,1fr); }
  .stay-stat-item:nth-child(2)::before { display: none; }
  .stay-stat-item { padding: 2.2rem 1rem; }
}

/* ==================================================
   ABOUT
   ================================================== */
.stay-about { background: var(--sbg3); padding: 8rem 0; }
.stay-about-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
@media (max-width:860px) { .stay-about-inner { grid-template-columns: 1fr; gap: 3.5rem; } }

.stay-pillars-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (max-width:480px) { .stay-pillars-grid { grid-template-columns: 1fr; } }

.stay-pillar {
  background: rgba(196,146,40,.04); border: 1px solid rgba(196,146,40,.12);
  border-radius: 4px; padding: 1.7rem 1.4rem;
  transition: box-shadow .28s cubic-bezier(.22,1,.36,1), transform .28s, border-color .28s;
}
.stay-pillar:hover { box-shadow: 0 14px 44px rgba(196,146,40,.08); transform: translateY(-4px); border-color: rgba(196,146,40,.28); }
.stay-pillar-icon { font-size: 1.65rem; margin-bottom: .7rem; display: block; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.stay-pillar:hover .stay-pillar-icon { transform: scale(1.2); }
.stay-pillar-title { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; font-weight: 700; color: var(--sgold); margin-bottom: .4rem; }
.stay-pillar-body { font-size: .83rem; color: var(--sivory3); line-height: 1.65; }

/* ==================================================
   ROOMS
   ================================================== */
.stay-rooms { background: var(--sbg); padding: 8rem 0; }
.stay-rooms .stay-section-title { color: var(--sivory); }
.stay-rooms .stay-section-title em { color: var(--sgold); }
.stay-rooms .stay-divider { background: linear-gradient(90deg, var(--sgold), transparent); }
.stay-rooms .stay-body-text { color: var(--sivory2); }

.stay-rooms-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width:768px) { .stay-rooms-grid { grid-template-columns: 1fr; } }

/* 3D tilt support */
.stay-room-card {
  background: var(--sbg2); border: 1px solid rgba(196,146,40,.12);
  border-radius: 4px; overflow: hidden;
  transition: box-shadow .4s cubic-bezier(.22,1,.36,1), border-color .4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.stay-room-card:hover {
  box-shadow: 0 36px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(196,146,40,.22);
  border-color: rgba(196,146,40,.3);
}

.stay-room-img-wrap { position: relative; overflow: hidden; height: 270px; }
.stay-room-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
}
.stay-room-card:hover .stay-room-img { transform: scale(1.08); }
.stay-room-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,10,.85) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.stay-room-card:hover .stay-room-img-overlay { opacity: 1; }

.stay-room-body { padding: 2rem 1.8rem; }
.stay-room-title { font-family: 'Cormorant Garamond',serif; font-size: 1.65rem; font-weight: 600; color: var(--sivory); margin-bottom: .2rem; }
.stay-room-size { font-size: .67rem; color: var(--sgold); letter-spacing: .22em; font-weight: 600; text-transform: uppercase; margin-bottom: .9rem; }
.stay-room-desc { font-size: .87rem; color: var(--sivory3); line-height: 1.75; margin-bottom: 1.3rem; }
.stay-room-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.6rem; }
.stay-room-tag {
  background: rgba(196,146,40,.07); border: 1px solid rgba(196,146,40,.18);
  color: rgba(196,146,40,.78); font-size: .65rem;
  padding: .2rem .6rem; border-radius: 2px;
}

/* Reserve button — ghost fill */
.stay-room-reserve {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; border: 1px solid rgba(196,146,40,.45);
  color: var(--sgold); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .75rem 1.6rem; border-radius: 2px;
  text-decoration: none; position: relative; overflow: hidden;
  transition: color .35s, border-color .35s;
}
.stay-room-reserve::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sgold), var(--sgold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(.22,1,.36,1); z-index: -1;
}
.stay-room-reserve:hover { color: #08060A; border-color: var(--sgold); }
.stay-room-reserve:hover::before { transform: scaleX(1); }
.stay-room-reserve-arrow { transition: transform .28s; }
.stay-room-reserve:hover .stay-room-reserve-arrow { transform: translateX(4px); }

/* ==================================================
   FACILITIES
   ================================================== */
.stay-facilities { background: var(--sbg2); padding: 8rem 0; }
.stay-facilities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
@media (max-width:900px) { .stay-facilities-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:580px) { .stay-facilities-grid { grid-template-columns: repeat(2,1fr); } }

.stay-facility {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.2rem 1rem;
  background: rgba(196,146,40,.04); border: 1px solid rgba(196,146,40,.1);
  border-radius: 4px; position: relative; overflow: hidden;
  transition: border-color .28s, box-shadow .28s, transform .28s;
}
.stay-facility::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--sgold), var(--sgold3), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.stay-facility:hover { border-color: rgba(196,146,40,.28); box-shadow: 0 14px 44px rgba(196,146,40,.07); transform: translateY(-5px); }
.stay-facility:hover::after { transform: scaleX(1); }

.stay-facility-icon { font-size: 2rem; margin-bottom: .8rem; display: block; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.stay-facility:hover .stay-facility-icon { transform: scale(1.22) translateY(-3px); }
.stay-facility-name { font-size: .85rem; font-weight: 700; color: var(--sivory); margin-bottom: .25rem; }
.stay-facility-desc { font-size: .72rem; color: var(--sivory3); line-height: 1.55; }

/* ==================================================
   GALLERY — CSS Masonry
   ================================================== */
.stay-gallery { background: var(--sbg); padding: 8rem 0; }
.stay-gallery .stay-section-title { color: var(--sivory); }
.stay-gallery .stay-section-title em { color: var(--sgold); }
.stay-gallery .stay-divider { background: linear-gradient(90deg, var(--sgold), transparent); }

.stay-gallery-tabs { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.stay-gallery-tab {
  background: transparent; border: 1px solid rgba(196,146,40,.15);
  color: var(--sivory3); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 2px; cursor: pointer; transition: all .22s;
  font-family: 'DM Sans',sans-serif;
}
.stay-gallery-tab:hover { border-color: rgba(196,146,40,.5); color: var(--sgold); }
.stay-gallery-tab.active { background: var(--sgold); border-color: var(--sgold); color: #08060A; font-weight: 700; }

.stay-gallery-grid { columns: 4; column-gap: .6rem; }
@media (max-width:900px) { .stay-gallery-grid { columns: 3; } }
@media (max-width:560px) { .stay-gallery-grid { columns: 2; } }

.stay-gallery-item {
  break-inside: avoid; margin-bottom: .6rem; overflow: hidden;
  border-radius: 3px; cursor: pointer;
  background: rgba(196,146,40,.04); border: none; padding: 0;
  display: block; width: 100%; position: relative;
}
.stay-gallery-item img {
  width: 100%; height: auto; object-fit: cover; display: block;
  transition: transform .48s cubic-bezier(.22,1,.36,1);
}
.stay-gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,6,10,.55); border-radius: 3px;
  opacity: 0; transition: opacity .3s;
}
.stay-gallery-item:hover img { transform: scale(1.1); }
.stay-gallery-item:hover::after { opacity: 1; }

/* ==================================================
   REVIEWS
   ================================================== */
.stay-reviews { background: var(--sbg2); padding: 7.5rem 0; position: relative; overflow: hidden; }
.stay-reviews::before {
  content: '\201C'; position: absolute; top: -3rem; left: 1rem;
  font-family: 'Cormorant Garamond',serif; font-size: 22rem;
  color: rgba(196,146,40,.04); line-height: 1;
  pointer-events: none; user-select: none;
}
.stay-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width:768px) { .stay-reviews-grid { grid-template-columns: 1fr; gap: 1.2rem; } }

.stay-review {
  background: rgba(196,146,40,.04); border: 1px solid rgba(196,146,40,.12);
  border-radius: 4px; padding: 2.2rem 1.8rem;
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
}
.stay-review:hover { transform: translateY(-6px); border-color: rgba(196,146,40,.28); box-shadow: 0 16px 48px rgba(196,146,40,.07); }
.stay-review-stars { color: var(--sgold); font-size: 1rem; letter-spacing: .04em; margin-bottom: .85rem; }
.stay-review-text { font-size: .92rem; font-style: italic; color: var(--sivory2); line-height: 1.78; margin-bottom: 1.3rem; }
.stay-review-author { font-size: .67rem; font-weight: 700; letter-spacing: .2em; color: var(--sgold2); text-transform: uppercase; }

/* Google Review CTA */
.earn-google-review-cta {
  display: inline-flex; align-items: center; gap: .65rem;
  background: rgba(196,146,40,.07); border: 1px solid rgba(196,146,40,.22);
  color: var(--sivory2); font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  padding: .8rem 1.7rem; border-radius: 2px; text-decoration: none;
  transition: background .22s, border-color .22s, transform .22s;
}
.earn-google-review-cta:hover { background: rgba(196,146,40,.14); border-color: rgba(196,146,40,.4); transform: translateY(-2px); }
.earn-google-reward {
  background: rgba(196,146,40,.16); border: 1px solid rgba(196,146,40,.32);
  color: var(--sgold); font-size: .66rem; padding: .18rem .55rem; border-radius: 2px;
}

/* ==================================================
   LIGHTBOX
   ================================================== */
.stay-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,6,10,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .28s;
}
.stay-lightbox[hidden] { display: none; }
.stay-lightbox.is-open  { opacity: 1; }
.stay-lightbox-img { max-width: 92vw; max-height: 85vh; border-radius: 4px; object-fit: contain; box-shadow: 0 28px 90px rgba(0,0,0,.75); }
.stay-lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: rgba(196,146,40,.1); border: 1px solid rgba(196,146,40,.25);
  color: var(--sivory2); font-size: 1.4rem;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: background .22s, transform .22s;
}
.stay-lightbox-close:hover { background: rgba(196,146,40,.22); transform: rotate(90deg); }

/* ==================================================
   LOCATION
   ================================================== */
.stay-location { background: var(--sbg3); padding: 8rem 0; }
.stay-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; margin-top: 3rem; }
@media (max-width:768px) { .stay-location-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.stay-contact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.stay-contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(196,146,40,.04); border-radius: 4px; border: 1px solid rgba(196,146,40,.1);
  transition: box-shadow .25s, border-color .25s;
}
.stay-contact-row:hover { box-shadow: 0 8px 32px rgba(196,146,40,.08); border-color: rgba(196,146,40,.25); }
.stay-contact-ico { font-size: 1.35rem; flex-shrink: 0; }
.stay-contact-label { font-size: .63rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--sgold); margin-bottom: .25rem; }
.stay-contact-val { font-size: .92rem; color: var(--sivory2); line-height: 1.65; }
.stay-contact-val a { color: var(--sgold2); text-decoration: none; }
.stay-contact-val a:hover { text-decoration: underline; }

.stay-map-iframe {
  width: 100%; aspect-ratio: 4/3; border-radius: 4px; border: none; display: block;
  box-shadow: 0 16px 56px rgba(0,0,0,.5);
  filter: grayscale(.4) contrast(1.1) brightness(.85);
  transition: filter .35s;
}
.stay-map-iframe:hover { filter: grayscale(.15) contrast(1.05) brightness(.95); }

/* ==================================================
   MARQUEE STRIP (N)
   ================================================== */
.stay-marquee {
  overflow: hidden;
  background: var(--sbg2);
  border-top: 1px solid rgba(196,146,40,.12);
  border-bottom: 1px solid rgba(196,146,40,.08);
  padding: .9rem 0;
  user-select: none;
}
.stay-marquee-track {
  display: flex;
  width: max-content;
  animation: stayMarqueeScroll 30s linear infinite;
}
.stay-marquee:hover .stay-marquee-track { animation-play-state: paused; }
.stay-marquee-inner { display: flex; align-items: center; flex-shrink: 0; }
.stay-marquee-item {
  padding: 0 2rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--sivory3); white-space: nowrap;
}
.stay-marquee-sep {
  color: var(--sgold); font-size: .8rem; opacity: .55; flex-shrink: 0;
}
@keyframes stayMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================================================
   AURORA AMBIENT LAYER (S)
   ================================================== */
.stay-about { position: relative; overflow: hidden; }
.stay-about .stay-container { position: relative; z-index: 1; }

.stay-aurora-layer {
  position: absolute; inset: -25%; width: 150%; height: 150%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 55%, rgba(196,146,40,.09) 0%, transparent 100%),
    radial-gradient(ellipse 40% 55% at 78% 20%, rgba(90,55,140,.07) 0%, transparent 100%),
    radial-gradient(ellipse 65% 35% at 55% 90%, rgba(160,100,15,.06) 0%, transparent 100%);
  animation: stayAuroraMove 22s ease-in-out infinite alternate;
}
@keyframes stayAuroraMove {
  0%   { transform: translate(0%,0%)    rotate(0deg); }
  33%  { transform: translate(-5%,3%)   rotate(.8deg); }
  66%  { transform: translate(4%,-4%)   rotate(-.6deg); }
  100% { transform: translate(-3%,5%)   rotate(.4deg); }
}

/* ==================================================
   LANNA SVG ORNAMENT SEPARATOR (L)
   ================================================== */
.stay-lanna-sep {
  display: flex; align-items: center; justify-content: center;
  padding: 2.8rem 3rem; background: var(--sbg);
}
.stay-lanna-svg { width: 100%; max-width: 320px; height: 30px; overflow: visible; }
.lanna-path { stroke: rgba(196,146,40,.65); stroke-width: 1; fill: none; }
.lanna-dot  { fill: var(--sgold); }

/* ==================================================
   GOLD SECTION CONNECTOR (W)
   ================================================== */
.stay-section-connector {
  position: absolute;
  left: 2.8rem; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(196,146,40,.25) 12%,
    rgba(196,146,40,.15) 88%,
    transparent 100%
  );
  transform-origin: top center;
  transform: scaleY(0);
  pointer-events: none; z-index: 1;
}
.stay-rooms  { position: relative; }
.stay-reviews { position: relative; }
@media (max-width:900px) { .stay-section-connector { display: none; } }

/* ── Booking Inquiry Panel ── */
.sb-panel {
  position: fixed; inset: 0;
  z-index: 9100;
  pointer-events: none; visibility: hidden;
}
.sb-panel.open { pointer-events: auto; visibility: visible; }

.sb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0; transition: opacity 0.3s ease;
}
.sb-panel.open .sb-backdrop { opacity: 1; }

.sb-sheet {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 440px; max-width: 100%;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0, 0.15, 1);
  padding: 2rem 1.75rem 3rem;
  display: flex; flex-direction: column;
}
.sb-panel.open .sb-sheet { transform: translateX(0); }

.sb-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1rem;
  cursor: pointer; color: #999; padding: 0.4rem;
  border-radius: 4px; transition: color 0.15s; line-height: 1;
}
.sb-close:hover { color: #222; }

/* Step indicator */
.sb-step-ind {
  display: flex; align-items: center;
  margin-bottom: 2rem; margin-top: 0.25rem;
}
.sb-sdot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #ddd; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; color: #bbb;
  flex-shrink: 0; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.sb-sdot.active, .sb-sdot.done {
  border-color: oklch(71.5% 0.082 78);
  background: oklch(71.5% 0.082 78); color: #fff;
}
.sb-sline { flex: 1; height: 1px; background: #e8e8e8; }

.sb-body { display: flex; flex-direction: column; }
.sb-hidden { display: none !important; }

.sb-eyebrow {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: oklch(71.5% 0.082 78); margin: 0 0 0.4rem;
}
.sb-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 400;
  color: oklch(19.5% 0.058 252);
  margin: 0 0 1.25rem; line-height: 1.2;
}

/* Hotel badge */
.sb-hotel-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: oklch(19.5% 0.058 252);
  border-radius: 8px; padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.sb-hotel-stars { color: oklch(71.5% 0.082 78); font-size: 0.8rem; flex-shrink: 0; }
.sb-hotel-name  { font-size: 0.875rem; font-weight: 600; color: #fff; flex: 1; }
.sb-hotel-city  { font-size: 0.72rem; color: oklch(71.5% 0.082 78); flex-shrink: 0; }

/* Date row */
.sb-date-row {
  display: flex; align-items: flex-end; gap: 0.75rem; margin-bottom: 1rem;
}
.sb-date-col { flex: 1; }
.sb-arrow { color: #ccc; padding-bottom: 0.5rem; font-size: 1rem; flex-shrink: 0; }

/* Labels + inputs */
.sb-lbl {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #999; margin-bottom: 0.3rem;
}
.sb-req { color: #e05; }
.sb-input {
  width: 100%; padding: 0.6rem 0.75rem;
  border: 1.5px solid #e4e4e4; border-radius: 6px;
  font-size: 0.875rem; font-family: inherit;
  color: oklch(19.5% 0.058 252); background: #fff;
  transition: border-color 0.15s; box-sizing: border-box;
}
.sb-input:focus { outline: none; border-color: oklch(71.5% 0.082 78); }
.sb-select { cursor: pointer; }
.sb-ta { resize: vertical; min-height: 76px; }

/* Guest counter */
.sb-guest-row {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 0.875rem;
}
.sb-counter { display: flex; align-items: center; gap: 1rem; }
.sb-cnt {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid oklch(71.5% 0.082 78);
  background: none; color: oklch(71.5% 0.082 78);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.sb-cnt:hover { background: oklch(71.5% 0.082 78); color: #fff; }
#sb-gnum {
  font-size: 1rem; font-weight: 600;
  min-width: 1.5rem; text-align: center;
  color: oklch(19.5% 0.058 252);
}
.sb-nights {
  text-align: center; font-size: 0.82rem; color: #666;
  background: oklch(97% 0.004 88);
  border-radius: 6px; padding: 0.6rem;
  margin-bottom: 1.25rem; min-height: 2.25rem;
}

/* Buttons */
.sb-btn-primary {
  width: 100%; padding: 0.875rem 1.5rem;
  background: oklch(19.5% 0.058 252); color: #fff;
  border: none; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.2s; margin-top: 1.25rem;
}
.sb-btn-primary:hover { background: oklch(27% 0.065 252); }
.sb-btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }
.sb-btn-primary.sb-flex1 { width: auto; flex: 1; margin-top: 0; }

.sb-btn-secondary {
  padding: 0.875rem 1.25rem; background: none;
  border: 1.5px solid #e4e4e4; color: #888;
  border-radius: 6px; font-size: 0.875rem; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.sb-btn-secondary:hover { border-color: oklch(19.5% 0.058 252); color: oklch(19.5% 0.058 252); }

.sb-btn-confirm {
  padding: 0.875rem 1.5rem;
  background: oklch(71.5% 0.082 78); color: #fff;
  border: none; border-radius: 6px;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.2s;
}
.sb-btn-confirm:hover { background: oklch(63% 0.095 78); }
.sb-btn-confirm:disabled { opacity: 0.55; cursor: not-allowed; }
.sb-btn-confirm.sb-flex1 { flex: 1; }

.sb-btn-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

/* Form */
.sb-form { display: flex; flex-direction: column; gap: 0.875rem; }
.sb-field { display: flex; flex-direction: column; }

/* Summary */
.sb-summary {
  background: oklch(97% 0.004 88);
  border-radius: 8px; padding: 1rem; margin-bottom: 0.75rem;
}
.sb-dl { display: grid; gap: 0.5rem; }
.sb-dl-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0.5rem; font-size: 0.82rem;
}
.sb-dl-row dt {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: #aaa;
}
.sb-dl-row dd { color: oklch(19.5% 0.058 252); font-weight: 500; margin: 0; }
.sb-note-text { font-size: 0.72rem; color: #bbb; line-height: 1.5; margin: 0; }

/* Success */
.sb-done {
  align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 0; flex: 1;
}
.sb-check {
  width: 60px; height: 60px; border-radius: 50%;
  background: oklch(71.5% 0.082 78); color: #fff;
  font-size: 1.6rem; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.sb-done-msg { font-size: 0.9rem; color: #666; line-height: 1.8; margin-bottom: 2rem; }
.sb-done-msg strong { color: oklch(19.5% 0.058 252); }

/* Toast */
.sb-toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: oklch(19.5% 0.058 252); color: #fff;
  font-size: 0.82rem; font-weight: 500;
  padding: 8px 20px; border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9999; white-space: nowrap;
}
.sb-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 480px) {
  .sb-sheet { width: 100%; padding: 1.5rem 1.25rem 2.5rem; }
  .sb-date-row { flex-direction: column; gap: 0.75rem; }
  .sb-arrow { display: none; }
}
