/* ================================================================
   DESIGN SYSTEM — Hotel Highway Memories
   Royal Premium · Ananta Palace Inspired
================================================================ */
:root {
  --gold:       #8B7535;
  --gold-lt:    #B09A50;
  --gold-dk:    #6B5820;
  --gold-warm:  #C9A84C;
  --gold-glow:  rgba(139,117,53,.35);
  --ivory:      #FAF8F2;
  --parchment:  #F2EAD3;
  --sand:       #E8DCC0;
  --cream:      #F7F3E8;
  --muted:      #8C7D6A;
  --dark-text:  #2C2416;
  --dark-muted: #5C5040;
  --dark:       #161210;
  --charcoal:   #1C1810;
  --warm-dark:  #2A2418;
  --avail:      #1a7a4a;
  --occup:      #c0392b;
  --sel:        #2563eb;
  --green:      #25D366;
  --shadow:     0 12px 40px rgba(44,36,22,.10);
  --shadow-lg:  0 28px 70px rgba(44,36,22,.16);
  --sec-light:  #FAF8F2;
  --sec-dark:   #1C1810;
  --sec-parch:  #F2EAD3;
}
 
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--ivory); color: var(--dark-text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }
 
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
 
/* ================================================================
   LOADER
================================================================ */
#loader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .9s ease, visibility .9s ease;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-inner { text-align: center; }
.ld-logo {
  width: 100px; height: 100px; object-fit: contain;
  margin: 0 auto 1.2rem; border-radius: 50%;
  border: 2px solid rgba(201,168,76,.25);
  padding: 8px;
  background: #fff;
  animation: ldPulse 2s ease-in-out infinite;
}
.ld-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  color: var(--gold-warm); font-weight: 600; letter-spacing: .06em;
  margin-bottom: .4rem; animation: ldPulse 2s ease-in-out infinite;
}
.ld-tagline {
  font-size: .55rem; letter-spacing: .5em; text-transform: uppercase;
  color: rgba(255,255,255,1); margin-bottom: 2.5rem;
}
.ld-bar-wrap { width: 160px; height: 1px; background: rgba(139,117,53,.12); margin: 0 auto; overflow: hidden; }
.ld-bar { height: 100%; background: linear-gradient(to right, transparent, var(--gold-warm), transparent); animation: ldSweep 1.7s ease infinite; }
@keyframes ldPulse { 0%,100%{opacity:.45} 50%{opacity:1} }
@keyframes ldSweep { 0%{transform:translateX(-100%)} 100%{transform:translateX(200%)} }
 
/* ================================================================
   NAV
================================================================ */
#nav {
  position: fixed; top: 0; width: 100%; z-index: 900;
  padding: .55rem 3.5rem; display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,248,242,.97); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(139,117,53,.12), 0 6px 28px rgba(44,36,22,.07);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
#nav.sc {
  background: rgba(250,248,242,.97); backdrop-filter: blur(18px);
  padding: .55rem 3.5rem;
  box-shadow: 0 1px 0 rgba(139,117,53,.12), 0 6px 28px rgba(44,36,22,.07);
}
.nav-logo { display: flex; align-items: center; gap: .85rem; }
.nav-logo-img {
  width: 45px; height: 45px; object-fit: contain;
  border-radius: 45%;
  border: 1.5px solid rgba(201,168,76,.4);
  padding: 3px;
  background: rgba(255,255,255,.08);
  transition: all .4s;
}
#nav.sc .nav-logo-img {
  border-color: var(--gold);
  background: rgba(250,248,242,.9);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--dark-text); line-height: 1.1; letter-spacing: .018em; transition: color .4s;
}
.nav-sub {
  font-size: .50rem; letter-spacing: .42em; text-transform: uppercase; font-weight: 700;
  color: var(--muted); margin-top: .1rem; transition: color .4s;
}
#nav.sc .nav-name { color: var(--dark-text); }
#nav.sc .nav-sub  { color: var(--muted); }
 
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .70rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800;
  color: var(--muted); transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold-warm); transition: width .3s;
}
.nav-links a:hover { color: var(--gold-warm) !important; }
.nav-links a:hover::after { width: 100%; }
#nav.sc .nav-links a { color: var(--muted); }
.nav-cta {
  padding: .5rem 1.4rem; background: var(--gold); color: #fff !important;
  border-radius: 2px; font-weight: 600; transition: all .3s !important; letter-spacing: .16em;
}
.nav-cta:hover { background: var(--gold-lt) !important; box-shadow: 0 6px 18px var(--gold-glow) !important; }
.nav-cta::after { display: none !important; }
.ham {
  display: none; flex-direction: column; gap: 5px; background: none;
  padding: 8px; cursor: pointer; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent;
}
.ham span { width: 22px; height: 1.5px; background: var(--dark-text); display: block; transition: all .3s; }
#nav.sc .ham span { background: var(--dark-text); }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
/* MOBILE MENU */
.mob-menu {
  display: none; position: fixed; inset: 0; background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center;
  z-index: 980; overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu-logo { margin-bottom: 1.5rem; }
.mob-menu-logo img {
  width: 70px; height: 70px; object-fit: contain;
  margin: 0 auto; border-radius: 50%;
  border: 2px solid rgba(201,168,76,.3); padding: 6px;
}
.mob-cls {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65); font-size: 1.4rem;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.mob-lnk {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  color: rgba(255,255,255,.75); font-weight: 400; letter-spacing: .02em;
  padding: .7rem 2rem; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .3s; -webkit-tap-highlight-color: transparent;
}
.mob-lnk:hover, .mob-lnk:active { color: var(--gold-warm); }
.mob-book {
  margin-top: 1.5rem; background: var(--green) !important;
  font-family: 'Jost', sans-serif !important; font-size: .58rem !important;
  letter-spacing: .22em !important; text-transform: uppercase; font-weight: 700 !important;
  color: #fff !important; border-radius: 3px; padding: .9rem 2rem !important;
}
 
/* ================================================================
   HERO
================================================================ */
#hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
 
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.3s ease;
  animation: heroKen 18s ease-in-out infinite alternate;
}
 
.hero-slide.active { opacity: 1; }
 
@keyframes heroKen {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
 
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(22,18,16,.78) 0%, rgba(22,18,16,.18) 35%, rgba(22,18,16,.12) 65%, rgba(22,18,16,.82) 100%),
    linear-gradient(to right, rgba(22,18,16,.38) 0%, transparent 40%);
}
.hero-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; backdrop-filter: blur(6px);
  -webkit-tap-highlight-color: transparent;
}
.hero-arr:hover { background: var(--gold); border-color: var(--gold); }
.hero-arr-l { left: 2rem; }
.hero-arr-r { right: 2rem; }
.hero-dots {
  position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: .5rem;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.28); cursor: pointer; transition: all .3s; }
.hero-dot.on { background: var(--gold-warm); width: 22px; border-radius: 3px; }
 
.hero-content {
  position: relative; z-index: 3; text-align: center; color: #fff;
  padding: 10vh 1.5rem 1rem; max-width: 760px; width: 100%;
  margin-top: 0;
}
.hero-mark {
  width: 90px; height: 90px; margin: 0 auto 1.2rem;
  animation: fadeUp .7s .1s ease both;
}
.hero-mark img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.35);
  padding: 6px;
  transform: translateY(-19px);
}
.hero-orn {
  display: flex; align-items: center; gap: .7rem; justify-content: center;
  margin-bottom: .6rem; animation: fadeUp .7s .15s ease both;
}
.h-line { width: 36px; height: 1px; background: rgba(201,168,76,.45); }
.h-diamond { width: 5px; height: 5px; background: var(--gold-warm); transform: rotate(45deg); }
.hero-eyebrow {
  font-size: .75rem; letter-spacing: .5em; text-transform: uppercase; font-weight: 800;
  color: var(--white); margin-bottom: 1.2rem; opacity: .88;
  animation: fadeUp .8s .22s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300; line-height: 1; letter-spacing: -.01em;
  margin-bottom: 1.2rem; animation: fadeUp .9s .35s ease both;
}
.hero-title em {
  font-style: italic; font-weight: 600; color: var(--gold-warm); display: block;
  animation: goldGlow 4s ease-in-out infinite alternate;
}
@keyframes goldGlow {
  from { text-shadow: 0 0 40px rgba(201,168,76,.35); }
  to   { text-shadow: 0 0 80px rgba(201,168,76,.7), 0 0 140px rgba(201,168,76,.3); }
}
.hero-rule {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  margin-bottom: 1.8rem; animation: fadeUp .9s .46s ease both;
}
.hr-line { flex: 1; max-width: 70px; height: 1px; }
.hr-line:first-child { background: linear-gradient(to right, transparent, rgba(201,168,76,.4)); }
.hr-line:last-child  { background: linear-gradient(to left, transparent, rgba(201,168,76,.4)); }
.hr-gem { width: 6px; height: 6px; background: var(--gold-warm); transform: rotate(45deg); }
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s .58s ease both;
}
.btn-gold {
  padding: .85rem 2.2rem; background: var(--gold); color: #fff;
  font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  border-radius: 2px; transition: all .35s; border: 1.5px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(139,117,53,.45); }
.btn-outline {
  padding: .85rem 2.2rem; background: transparent; color: #fff;
  font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 2px; transition: all .35s;
}
.btn-outline:hover { border-color: var(--gold-warm); color: var(--gold-warm); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: fadeUp .9s 1.2s ease both;
}
.scroll-mouse { width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,.22); border-radius: 10px; display: flex; align-items: flex-start; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 2px; height: 6px; background: var(--gold-warm); border-radius: 1px; animation: scrollW 2s ease-in-out infinite; }
@keyframes scrollW { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }
.hero-scroll small { font-size: .36rem; letter-spacing: .45em; text-transform: uppercase; color: rgba(255,255,255,.2); }
.hero-badge {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  z-index: 4; writing-mode: vertical-rl;
  font-size: .38rem; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(201,168,76,.28); animation: fadeUp 1s 1.5s ease both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
 
/* ================================================================
   SHARED SECTION STYLES
================================================================ */
section { padding: 4rem 1.5rem; }
.si { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  font-size: .48rem; letter-spacing: .44em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .55rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600;
  line-height: 1.1; color: var(--dark-text); margin-bottom: .7rem;
}
.section-title-light { color: #fff; }
.gold-rule { width: 42px; height: 1.5px; background: var(--gold); margin: .6rem 0; }
.cx { text-align: center; }
.section-sub { font-size: .8rem; color: var(--muted); max-width: 480px; margin: .5rem auto 0; line-height: 1.85; font-weight: 300; }
.section-eyebrow { display: flex; align-items: center; gap: .8rem; margin-bottom: .7rem; }
.ey-line { width: 28px; height: 1px; background: var(--gold); }
 
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
 
.map-link {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.5rem; background: var(--dark-text); color: #fff;
  border-radius: 2px; font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  transition: all .3s; position: relative; overflow: hidden;
}
.map-link::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.map-link:hover::before { transform: scaleX(1); }
.map-link svg, .map-link span { position: relative; z-index: 1; }
 
.img-frame {
  border: 2px solid rgba(139,117,53,.18);
  box-shadow: 0 8px 32px rgba(44,36,22,.12);
}
 
/* ================================================================
   ABOUT
================================================================ */
#about { background: var(--ivory); position: relative; overflow: hidden; }
#about::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,117,53,.18), transparent);
}
.about-bg-word {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 16vw, 14rem); font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(139,117,53,.05);
  pointer-events: none; white-space: nowrap; user-select: none; z-index: 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.about-imgs { position: relative; }
.about-img-main {
  height: 460px; overflow: hidden; position: relative;
  box-shadow: 0 24px 60px rgba(44,36,22,.14);
  border: 3px solid rgba(139,117,53,.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--gold); color: #fff;
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 3; box-shadow: 0 8px 26px rgba(139,117,53,.45);
}
.aib-year { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; line-height: 1; }
.aib-lbl  { font-size: .36rem; letter-spacing: .2em; text-transform: uppercase; opacity: .7; margin-top: .1rem; }
.about-img-float {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 190px; height: 150px; overflow: hidden;
  box-shadow: 0 18px 48px rgba(44,36,22,.22);
  border: 3px solid rgba(139,117,53,.22);
  z-index: 2;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-lead { font-size: .88rem; line-height: 2; color: var(--dark-muted); font-weight: 300; margin-bottom: 1rem; }
.about-quote {
  margin: 1.4rem 0; padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(to right, rgba(139,117,53,.05), transparent);
  position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; color: var(--gold);
  opacity: .18; position: absolute; top: -.6rem; left: 1rem; line-height: 1;
}
.about-quote p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.02rem;
  font-style: italic; color: var(--dark-text); font-weight: 400; line-height: 1.7; margin: 0;
}
.about-body { font-size: .85rem; line-height: 2; color: var(--dark-muted); font-weight: 300; margin-bottom: 1.5rem; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.5rem; }
.about-feat { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--dark-text); font-weight: 500; }
.feat-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(139,117,53,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
 
/* ================================================================
   ROOMS
================================================================ */
#rooms { background: var(--charcoal); position: relative; }
#rooms::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,117,53,.18), transparent);
}
#rooms .section-sub { color: rgba(255,255,255,.35); }
#rooms .section-sub strong { color: rgba(255,255,255,.7); }
#rooms .eyebrow { color: rgba(176,154,80,.65); }
#rooms .gold-rule { background: rgba(139,117,53,.38); }
 
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 2.5rem; }
.room-card {
  background: rgba(255,255,255,.03); overflow: hidden;
  border: 1px solid rgba(139,117,53,.14);
  transition: transform .38s, box-shadow .38s, border-color .38s;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.4); border-color: rgba(139,117,53,.3); }
.slider-wrap { position: relative; height: 250px; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; height: 100%; flex-shrink: 0; background: rgba(255,255,255,.04); position: relative; overflow: hidden; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; cursor: zoom-in; }
.slide-ph { font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); opacity: .5; text-align: center; }
.sarr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(22,18,16,.58); color: #fff; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .3s; backdrop-filter: blur(4px); }
.sarr:hover { background: var(--gold); }
.sarr.lft { left: .7rem; } .sarr.rgt { right: .7rem; }
.sdots { position: absolute; bottom: .7rem; left: 50%; transform: translateX(-50%); display: flex; gap: .4rem; z-index: 2; }
.sdot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .25s; }
.sdot.on { background: #fff; width: 18px; border-radius: 3px; }
.rbadge { position: absolute; top: .8rem; left: .8rem; font-size: .46rem; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .72rem; font-weight: 700; border-radius: 2px; z-index: 2; }
.badge-deluxe  { background: rgba(22,18,16,.82); color: var(--gold-warm); backdrop-filter: blur(4px); }
.badge-triple  { background: rgba(139,117,53,.85); color: #fff; }
.badge-premium { background: var(--gold); color: #fff; }
.room-body { padding: 1.4rem; }
.room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: .4rem; color: #fff; }
.room-desc { font-size: 0.89.rem; color: rgba(255,255,255,.35); line-height: 1.8; font-weight: 300; margin-bottom: .9rem; }
.room-feats { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.1rem; }
.room-feats span { font-size: .60rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: .25rem .65rem; border: 1px solid rgba(139,117,53,.2); color: rgba(176,154,80,.7); border-radius: 2px; }
.room-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem; }
.room-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-warm); font-weight: 700; }
.room-price small { font-family: 'Jost', sans-serif; font-size: .56rem; color: rgba(255,255,255,.28); font-weight: 300; }
.avail-btn { padding: .6rem 1.3rem; background: var(--gold); color: #fff; font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: all .3s; }
.avail-btn:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(139,117,53,.35); }
 
/* ================================================================
   AVAILABILITY MODAL
================================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(22,18,16,.88); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.overlay.open { display: flex; }
.modal { background: var(--ivory); width: 100%; max-width: 700px; max-height: 95vh; overflow-y: auto; border-radius: 3px; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.modal-head { padding: 1.3rem 1.7rem; border-bottom: 1px solid rgba(139,117,53,.18); display: flex; justify-content: space-between; align-items: flex-start; position: sticky; top: 0; background: var(--ivory); z-index: 1; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark-text); }
.modal-sub { font-size: .58rem; color: var(--muted); margin-top: .15rem; }
.modal-close { background: none; font-size: 1.5rem; color: var(--muted); transition: color .3s; line-height: 1; }
.modal-close:hover { color: var(--dark-text); }
.modal-body { padding: 1.3rem 1.7rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1.2rem; padding: 1rem 1.1rem; background: var(--parchment); border-left: 3px solid var(--gold); }
.form-section-title { grid-column: span 2; font-size: .48rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.form-group { display: flex; flex-direction: column; gap: .25rem; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: .46rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.form-input { background: #fff; border: 1.5px solid rgba(139,117,53,.22); padding: .6rem .85rem; font-size: .8rem; color: var(--dark-text); border-radius: 2px; width: 100%; transition: border-color .3s; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(140,125,106,.35); }
.legend { display: flex; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: .4rem; font-size: .6rem; color: var(--muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.a { background: var(--avail); }
.legend-dot.o { background: var(--occup); }
.legend-dot.s { background: var(--sel); }
.pills-grid { display: flex; flex-wrap: wrap; gap: .42rem; }
.pill { width: 60px; height: 48px; border-radius: 3px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 1.5px solid transparent; transition: transform .15s, box-shadow .15s; font-size: .68rem; font-weight: 700; user-select: none; }
.pill.a { background: #e8f5ee; color: var(--avail); border-color: #b8d9c8; cursor: pointer; }
.pill.o { background: #fdecea; color: var(--occup); border-color: #f5b4ae; cursor: not-allowed; opacity: .65; }
.pill.sel { background: var(--sel); color: #fff; border-color: var(--sel); }
.pill.a:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(26,122,74,.2); }
.avail-summary { margin-top: 1rem; padding: .85rem 1rem; background: var(--parchment); border-left: 3px solid var(--gold); }
.avail-row { display: flex; justify-content: space-between; font-size: .78rem; margin-bottom: .22rem; }
.avail-row:last-child { margin: 0; font-weight: 600; }
.c-avail { color: var(--avail); font-weight: 700; }
.c-occup { color: var(--occup); font-weight: 700; }
.c-sel   { color: var(--sel); font-weight: 700; }
.sel-bar { background: var(--dark-text); color: #fff; padding: .85rem 1.1rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .55rem; margin-top: .85rem; border-radius: 2px; }
.sel-bar.hidden { display: none; }
.sb-info { font-size: .72rem; line-height: 1.6; }
.sb-info strong { color: var(--gold-warm); }
.sb-rooms { font-size: .54rem; color: rgba(255,255,255,.3); margin-top: .1rem; }
.sb-actions { display: flex; gap: .45rem; }
.sb-clear { background: none; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); padding: .42rem .8rem; font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; transition: all .3s; }
.sb-clear:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.sb-wa { background: var(--green); color: #fff; padding: .45rem 1rem; font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; border-radius: 2px; transition: opacity .3s; }
.sb-wa:hover { opacity: .88; }
.req-note { font-size: .6rem; color: var(--occup); text-align: center; margin-top: .55rem; display: none; }
.modal-foot { padding: .9rem 1.7rem; border-top: 1px solid rgba(139,117,53,.18); }
.wa-confirm { width: 100%; padding: .88rem; background: var(--green); border: none; border-radius: 3px; color: #fff; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .55rem; transition: opacity .3s; }
.wa-confirm:hover { opacity: .88; }
.modal-note { text-align: center; font-size: .56rem; color: var(--muted); margin-top: .55rem; }
 
/* ================================================================
   RESTAURANT
================================================================ */
#restaurant { background: var(--cream); position: relative; overflow: hidden; }
#restaurant::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dk), var(--gold), var(--gold-lt), var(--gold), var(--gold-dk), transparent);
}
.rest-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--dark-muted); max-width: 540px; margin: 0 auto 2.8rem; line-height: 1.85; font-weight: 300; text-align: center; font-style: italic; }
.rest-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
 
.rest-photo-main { height: 280px; overflow: hidden; position: relative; margin-bottom: .7rem; background: var(--sand); border: 2px solid rgba(139,117,53,.15); box-shadow: 0 8px 28px rgba(44,36,22,.1); }
.rest-photo-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.rest-photo-main:hover img { transform: scale(1.04); }
.rest-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,18,16,.75) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem 1.3rem; }
.rest-photo-overlay p { font-size: .68rem; color: rgba(255,255,255,.6); margin-top: .3rem; }
.rest-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.rest-photo-sm { height: 150px; overflow: hidden; position: relative; background: var(--sand); border: 2px solid rgba(139,117,53,.15); box-shadow: 0 4px 16px rgba(44,36,22,.08); }
.rest-photo-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.rest-photo-sm:hover img { transform: scale(1.06); }
.rest-photo-sm span { position: absolute; bottom: .6rem; left: .7rem; font-size: .46rem; letter-spacing: .16em; text-transform: uppercase; background: rgba(22,18,16,.6); color: rgba(255,255,255,.8); padding: .2rem .55rem; border-radius: 2px; font-weight: 600; }
 
.rest-schedule { background: var(--dark-text); padding: 1.6rem; border-left: 3px solid var(--gold); margin-bottom: 1.4rem; }
.rest-sched-hd { margin-bottom: 1.1rem; }
.rest-item { display: flex; align-items: flex-start; gap: .85rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.rest-item:last-child { border-bottom: none; padding-bottom: 0; }
.rest-item-special { background: rgba(139,117,53,.06); margin: 0 -1.6rem; padding: .9rem 1.6rem; }
.rest-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: rgba(139,117,53,.1); border: 1px solid rgba(139,117,53,.25); display: flex; align-items: center; justify-content: center; color: var(--gold-warm); }
.rest-detail { flex: 5; }
.rest-meal { font-family: 'Cormorant Garamond', serif; font-size: .98rem; font-weight: 600; color: #fff; margin-bottom: .1rem; }
.rest-time { font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-warm); font-weight: 600; margin-bottom: .28rem; }
.rest-desc { font-size: .65rem; color: rgba(255,255,255,.3); line-height: 1.65; font-weight: 300; }
.rest-tag { font-size: .42rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding: .22rem .6rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.rest-tag.open   { background: rgba(26,122,74,.15); color: #4ade80; border: 1px solid rgba(26,122,74,.3); }
.rest-tag.always { background: rgba(139,117,53,.15); color: var(--gold-warm); border: 1px solid rgba(139,117,53,.3); }
.menu-cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.6rem; background: var(--parchment); border-left: 3px solid var(--gold); flex-wrap: wrap; }
.menu-cta-left .eyebrow { margin-bottom: .3rem; }
.menu-cta-left h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dark-text); font-weight: 600; margin-bottom: .3rem; }
.menu-cta-left p { font-size: .7rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.open-menu-btn { display: flex; align-items: center; gap: .65rem; padding: .85rem 1.7rem; background: var(--gold); color: #fff; border-radius: 2px; font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; white-space: nowrap; transition: all .35s; flex-shrink: 0; }
.open-menu-btn:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(139,117,53,.35); }
 
/* ================================================================
   MENU BOOK MODAL
================================================================ */
#menuModal { z-index: 960; }
.book-container { position: relative; width: 100%; max-width: 940px; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.book-close { position: absolute; top: -3rem; right: 0; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.book-close:hover { background: rgba(255,255,255,.22); }
.book-topbar { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: .6rem 1.2rem; background: rgba(0,0,0,.48); border-radius: 3px; border: 1px solid rgba(139,117,53,.12); }
.book-brand { font-size: .55rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-warm); font-weight: 600; }
.book-pinfo { font-size: .52rem; color: rgba(255,255,255,.3); }
.book-wrap { width: 100%; }
.book { width: 100%; max-width: 940px; margin: 0 auto; position: relative; }
.book-spread { display: none; width: 100%; border-radius: 4px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(139,117,53,.08); }
.book-spread.active { display: grid; grid-template-columns: 1fr 1fr; }
.book-spread.pg-out { animation: pgOut .4s ease forwards; display: grid; grid-template-columns: 1fr 1fr; }
.book-spread.pg-in  { animation: pgIn  .4s ease forwards; display: grid; grid-template-columns: 1fr 1fr; }
@keyframes pgOut { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(.96)} }
@keyframes pgIn  { 0%{opacity:0;transform:scale(.96)} 100%{opacity:1;transform:scale(1)} }
.bpage { background: linear-gradient(160deg,#fefaf2 0%,#f8f0d8 50%,#f0e4b8 100%); padding: 2.2rem 1.8rem; min-height: 520px; position: relative; border: 1px solid rgba(180,140,80,.12); }
.bpage.left { border-right: 2px solid rgba(180,140,80,.18); box-shadow: inset -8px 0 20px rgba(180,140,80,.07); }
.bpage.right { box-shadow: inset 8px 0 20px rgba(180,140,80,.07); }
.page-num { position: absolute; bottom: 1rem; font-size: .46rem; letter-spacing: .2em; color: rgba(140,100,60,.3); font-style: italic; }
.bpage.left .page-num { left: 2rem; } .bpage.right .page-num { right: 2rem; }
.bpage.cover { background: linear-gradient(145deg,#1a1005 0%,#2d1e0a 40%,#1a1005 100%) !important; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: none !important; position: relative; overflow: hidden; }
.bpage.cover::after { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(139,117,53,.15); pointer-events: none; }
.cover-orn { font-size: 2.2rem; opacity: .38; margin-bottom: 1.2rem; color: var(--gold-warm); }
.cover-hotel { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-warm); font-weight: 600; line-height: 1.3; margin-bottom: .45rem; }
.cover-rule { width: 55px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-warm), transparent); margin: .9rem auto; }
.cover-menu-word { font-family: 'Pinyon Script', cursive; font-size: 4rem; color: #fff; line-height: 1; margin-bottom: .7rem; }
.cover-est { font-size: .44rem; letter-spacing: .48em; text-transform: uppercase; color: rgba(176,154,80,.35); }
.pg-cat { font-size: .46rem; letter-spacing: .34em; text-transform: uppercase; color: #7a5c2a; font-weight: 700; margin-bottom: 1rem; padding-bottom: .55rem; border-bottom: 1.5px solid rgba(140,100,60,.15); display: flex; align-items: center; gap: .55rem; }
.pg-cat::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, rgba(140,100,60,.15), transparent); }
.menu-item-row { display: flex; justify-content: space-between; align-items: flex-start; padding: .5rem 0; border-bottom: 1px dotted rgba(140,100,60,.12); gap: .5rem; }
.menu-item-row:last-of-type { border-bottom: none; }
.mi-left { flex: 1; }
.mi-name { font-family: 'Cormorant Garamond', serif; font-size: .96rem; font-weight: 600; color: #3d2a0e; line-height: 1.2; }
.mi-desc { font-size: .56rem; color: rgba(140,100,60,.5); margin-top: .1rem; line-height: 1.5; font-style: italic; }
.mi-badge { display: inline-block; font-size: .36rem; letter-spacing: .1em; text-transform: uppercase; padding: .07rem .3rem; border-radius: 2px; margin-left: .35rem; vertical-align: middle; font-weight: 700; }
.mi-veg    { background: #e8f5e9; color: #2e7d32; }
.mi-egg    { background: #fff8e1; color: #e65100; }
.mi-nonveg { background: #ffebee; color: #c62828; }
.mi-price  { font-family: 'Cormorant Garamond', serif; font-size: .93rem; color: #7a5c2a; font-weight: 700; white-space: nowrap; padding-top: .1rem; }
.book-controls { display: flex; align-items: center; gap: 1.2rem; }
.book-nav-btn { padding: .55rem 1.6rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); border-radius: 2px; font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; transition: all .3s; }
.book-nav-btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: #fff; }
.book-nav-btn:disabled { opacity: .2; cursor: not-allowed; }
.book-dots { display: flex; gap: .38rem; flex-wrap: wrap; justify-content: center; max-width: 280px; }
.book-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.16); cursor: pointer; transition: all .28s; }
.book-dot.on { background: var(--gold-warm); width: 18px; border-radius: 3px; }
 
/* ================================================================
   AMENITIES
================================================================ */
#amenities { background: var(--charcoal); position: relative; }
#amenities::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,117,53,.18), transparent);
}
#amenities .eyebrow { color: rgba(176,154,80,.65); }
#amenities .gold-rule { background: rgba(139,117,53,.38); }
 
.amenities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.8rem; margin-top: 2.8rem; }
.amenity-item { text-align: center; transition: transform .35s; }
.amenity-item:hover { transform: translateY(-5px); }
.amenity-icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(139,117,53,.08); border: 1px solid rgba(139,117,53,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto .9rem; color: var(--gold); transition: all .4s; }
.amenity-item:hover .amenity-icon { background: var(--gold); color: #fff; box-shadow: 0 8px 26px rgba(139,117,53,.32); }
.amenity-name { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: rgba(201,168,76,.9); margin-bottom: .35rem; font-weight: 600; }
.amenity-desc { font-size: .77rem; color: rgba(255,255,255,.3); line-height: 1.8; font-weight: 300; }
 
/* ================================================================
   GALLERY
================================================================ */
#gallery { background: var(--parchment); }
#gallery::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dk), var(--gold), var(--gold-lt), var(--gold), var(--gold-dk), transparent);
  margin-bottom: 0;
}
#gallery .eyebrow { color: var(--gold); }
#gallery .gold-rule { background: var(--gold); }
 
.gallery-wrap { margin-top: 2.2rem; }
.gallery-main { position: relative; height: 440px; overflow: hidden; background: var(--sand); border: 2px solid rgba(139,117,53,.18); margin-bottom: .8rem; box-shadow: 0 12px 40px rgba(44,36,22,.12); }
.gallery-slides { position: relative; width: 100%; height: 100%; }
.gal-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.gal-slide.active { opacity: 1; }
.gal-slide img { width: 100%; height: 100%; object-fit: cover; }
.gal-label { position: absolute; bottom: 1.1rem; left: 1.4rem; font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; background: rgba(22,18,16,.62); color: rgba(255,255,255,.85); padding: .35rem .85rem; border-radius: 2px; font-weight: 600; }
.gal-arr { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(22,18,16,.5); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; backdrop-filter: blur(6px); -webkit-tap-highlight-color: transparent; }
.gal-arr:hover { background: var(--gold); border-color: var(--gold); }
.gal-l { left: 1.1rem; } .gal-r { right: 1.1rem; }
.gal-count { position: absolute; bottom: 1.1rem; right: 1.4rem; font-size: .78rem; letter-spacing: .18em; background: rgba(22,18,16,.62); color: rgba(255,255,255,.7); padding: .32rem .75rem; border-radius: 2px; }
.gal-thumbs { display: grid; grid-template-columns: repeat(8,1fr); gap: .45rem; }
.gal-thumb { height: 65px; overflow: hidden; position: relative; cursor: pointer; background: var(--sand); border: 2px solid transparent; transition: border-color .3s, opacity .3s; opacity: .55; }
.gal-thumb.active { border-color: var(--gold); opacity: 1; }
.gal-thumb:hover { opacity: .88; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb span { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: transparent; padding-bottom: .25rem; transition: all .3s; background: rgba(22,18,16,0); }
.gal-thumb:hover span { background: rgba(22,18,16,.42); color: rgba(255,255,255,.8); }
 
/* ================================================================
   LIGHTBOX
================================================================ */
#lightbox {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,.92); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
#lightbox.open { display: flex; }
.lb-img-wrap { position: relative; max-width: 90vw; max-height: 90vh; }
#lbImg {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; display: block;
  border: 1px solid rgba(139,117,53,.25);
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lb-close {
  position: fixed; top: 1.2rem; right: 1.4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s; z-index: 1051;
}
.lb-close:hover { background: var(--gold); border-color: var(--gold); }
.lb-label {
  text-align: center; margin-top: .6rem;
  font-size: .5rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.lb-arr {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; z-index: 1051;
}
.lb-arr:hover { background: var(--gold); border-color: var(--gold); }
.lb-arr-l { left: 1rem; }
.lb-arr-r { right: 1rem; }
 
/* ================================================================
   CONTACT
================================================================ */
#contact { background: var(--charcoal); position: relative; }
#contact::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, rgba(139,117,53,.18), transparent); }
#contact .section-title { color: #fff; }
#contact .eyebrow { color: rgba(176,154,80,.65); }
#contact .gold-rule { background: rgba(139,117,53,.32); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; margin-top: 2.8rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.6rem; align-items: flex-start; }
.cico { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: rgba(139,117,53,.1); border: 1px solid rgba(139,117,53,.2); display: flex; align-items: center; justify-content: center; color: var(--gold-warm); }
.cinfo h4 { font-size: .48rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-warm); font-weight: 700; margin-bottom: .3rem; }
.cinfo p { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.8; font-weight: 300; }
.cinfo a { color: rgba(255,255,255,.38); transition: color .3s; }
.cinfo a:hover { color: var(--gold-warm); }
.cinfo .map-link { color: #fff; background: rgba(139,117,53,.15); border: 1px solid rgba(139,117,53,.22); }
.wa-chat { display: inline-flex; align-items: center; gap: .65rem; padding: .85rem 1.5rem; background: var(--green); color: #fff; border-radius: 3px; font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; transition: opacity .3s; margin-top: .3rem; }
.wa-chat:hover { opacity: .88; }
.booking-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 1.3rem; color: #fff; }
.booking-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.booking-form label { font-size: .46rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-warm); font-weight: 700; display: block; margin-bottom: .28rem; }
.booking-form input, .booking-form select, .booking-form textarea { background: rgba(255,255,255,.05); border: 1.5px solid rgba(139,117,53,.2); padding: .65rem .88rem; font-size: .8rem; color: #fff; border-radius: 2px; width: 100%; transition: border-color .3s; }
.booking-form input::placeholder { color: rgba(255,255,255,.2); }
.booking-form select option { background: var(--dark); color: #fff; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--gold); }
.booking-form textarea { resize: vertical; min-height: 70px; }
.wa-submit { padding: .92rem; background: var(--green); color: #fff; border: none; border-radius: 3px; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .5rem; transition: opacity .3s; }
.wa-submit:hover { opacity: .88; }
 
/* ================================================================
   FOOTER
================================================================ */
footer { background: var(--dark); padding: 3.5rem 1.5rem 1.8rem; position: relative; }
.footer-top-rule { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(139,117,53,.22), var(--gold-dk), rgba(139,117,53,.22), transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1120px; margin: 0 auto 3rem; }
.footer-logo-link { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; border: 1.5px solid rgba(201,168,76,.25); padding: 3px; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 800; color: var(--gold-warm); }
.footer-sub { font-size: .55rem; letter-spacing: .38em; text-transform: uppercase; color: rgba(255,255,255,1); display: block; margin-top: .1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,1); line-height: 1.95; font-weight: 400; }
.footer-tagline { margin-top: .9rem; font-size: .60rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,1); }
.footer-col h4 { font-size: .52rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { font-size: .98rem; color: rgba(255,255,255,1); transition: color .3s; }
.footer-col a:hover { color: var(--gold-warm); }
.footer-bottom { max-width: 1120px; margin: 0 auto; padding-top: 1.2rem; border-top: 1px solid rgba(139,117,53,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .9rem; }
.footer-copy { font-size: .60rem; color: rgba(255,255,255,1); letter-spacing: .1em; }
.footer-social { display: flex; gap: .65rem; align-items: center; }
.footer-social span { font-size: .54rem; color: rgba(255,255,255,1); letter-spacing: .14em; text-transform: uppercase; }
.s-btn { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s, box-shadow .3s; }
.s-btn:hover { transform: scale(1.14); box-shadow: 0 5px 18px rgba(0,0,0,.3); }
.s-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.s-wa { background: var(--green); }
 
/* ================================================================
   FLOATING
================================================================ */
.floats { position: fixed; bottom: 1.7rem; right: 1.7rem; z-index: 600; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.28); transition: transform .3s, box-shadow .3s; }
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(0,0,0,.38); }
.f-wa { background: var(--green); }
 
/* ================================================================
   ADMIN
================================================================ */
#adminBtn { position: fixed; bottom: 1.7rem; left: 1.7rem; z-index: 600; padding: .38rem .85rem; background: rgba(22,18,16,.6); color: rgba(255,255,255,.26); border: 1px solid rgba(255,255,255,.07); border-radius: 20px; font-size: .48rem; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(8px); transition: all .3s; }
#adminBtn:hover { background: var(--dark); color: rgba(139,117,53,.75); }
.adm-overlay { position: fixed; inset: 0; z-index: 990; background: rgba(22,18,16,.94); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.adm-overlay.open { display: flex; }
.adm-login { background: var(--charcoal); border: 1px solid rgba(139,117,53,.16); max-width: 380px; width: 100%; border-radius: 4px; padding: 2.6rem; }
.adm-login h2 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.5rem; margin-bottom: .3rem; }
.adm-login p { font-size: .64rem; color: rgba(255,255,255,.26); margin-bottom: 1.8rem; }
.adm-input { background: rgba(255,255,255,.05); border: 1.5px solid rgba(139,117,53,.16); border-radius: 2px; padding: .8rem 1rem; font-size: .86rem; color: #fff; width: 100%; margin-bottom: .9rem; transition: border-color .3s; }
.adm-input:focus { border-color: var(--gold); }
.adm-input::placeholder { color: rgba(255,255,255,.16); }
.adm-login-btn { width: 100%; padding: .88rem; background: var(--gold); border-radius: 2px; color: #fff; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; transition: background .3s; }
.adm-login-btn:hover { background: var(--gold-lt); }
.adm-err { font-size: .6rem; color: #e74c3c; margin-top: .65rem; text-align: center; display: none; }
.adm-cancel { width: 100%; margin-top: .5rem; background: none; border: none; color: rgba(255,255,255,.2); font-size: .56rem; letter-spacing: .1em; }
.adm-dash { background: var(--charcoal); max-width: 820px; width: 100%; max-height: 94vh; overflow-y: auto; border-radius: 4px; border: 1px solid rgba(139,117,53,.1); }
.adm-dash-head { padding: 1.1rem 1.6rem; border-bottom: 1px solid rgba(139,117,53,.08); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--charcoal); z-index: 1; }
.adm-dash-head h2 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.2rem; }
.adm-dash-actions { display: flex; gap: .45rem; }
.adm-logout { padding: .32rem .85rem; border: 1px solid rgba(255,255,255,.1); background: none; color: rgba(255,255,255,.32); border-radius: 2px; font-size: .5rem; letter-spacing: .12em; text-transform: uppercase; transition: all .3s; }
.adm-logout:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.adm-x { background: none; color: rgba(255,255,255,.32); font-size: 1.3rem; line-height: 1; }
.adm-body { padding: 1.4rem 1.6rem; }
.adm-section { margin-bottom: 2rem; }
.adm-section h3 { font-size: .5rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: .9rem; padding-bottom: .4rem; border-bottom: 1px solid rgba(139,117,53,.1); }
.price-ctrl { display: flex; justify-content: space-between; align-items: center; padding: .82rem 1rem; background: rgba(255,255,255,.03); border-radius: 2px; margin-bottom: .42rem; border: 1px solid rgba(255,255,255,.04); }
.price-ctrl-label { color: #fff; font-size: .8rem; }
.price-ctrl-label small { display: block; font-size: .54rem; color: rgba(255,255,255,.2); margin-top: .1rem; }
.price-ctrl-input { background: rgba(255,255,255,.07); border: 1.5px solid rgba(139,117,53,.16); border-radius: 2px; padding: .45rem .7rem; font-size: .85rem; color: #fff; width: 128px; text-align: right; transition: border-color .3s; }
.price-ctrl-input:focus { border-color: var(--gold); }
.adm-legend { display: flex; gap: 1rem; margin-bottom: .7rem; flex-wrap: wrap; }
.adm-legend-item { display: flex; align-items: center; gap: .35rem; font-size: .58rem; color: rgba(255,255,255,.3); }
.adm-leg-dot { width: 8px; height: 8px; border-radius: 50%; }
.adm-tip { font-size: .58rem; color: rgba(255,255,255,.16); margin-bottom: .7rem; }
.adm-pills-wrap { display: flex; flex-wrap: wrap; gap: .42rem; }
.adm-pill { width: 56px; height: 40px; border-radius: 3px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; cursor: pointer; font-size: .62rem; font-weight: 700; border: 1.5px solid transparent; transition: transform .2s; }
.adm-pill.a { background: #e6f4ee; color: var(--avail); border-color: #b3d9c6; }
.adm-pill.o { background: #fdecea; color: var(--occup); border-color: #f5b4ae; }
.adm-pill:hover { transform: scale(1.1); }
.adm-save { width: 100%; padding: .88rem; background: var(--gold); border-radius: 2px; color: #fff; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; margin-top: 1rem; transition: background .3s; }
.adm-save:hover { background: var(--gold-lt); }
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); background: var(--avail); color: #fff; padding: .7rem 1.7rem; border-radius: 3px; font-size: .62rem; font-weight: 700; z-index: 1100; display: none; white-space: nowrap; box-shadow: 0 6px 24px rgba(0,0,0,.2); letter-spacing: .1em; }
 
/* ================================================================
   RESPONSIVE — 960px
================================================================ */
@media(max-width:960px){
  #nav { padding: 1rem 1.5rem; }
  #nav.sc { padding: .6rem 1.5rem; }
  .nav-links { display: none; }
  .ham { display: flex; }
  section { padding: 3.5rem 1.4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-img-float { display: none; }
  .about-img-main { height: 320px; }
  .about-img-badge { left: 1rem; }
  .rooms-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); gap: 1.6rem; }
  .gal-thumbs { grid-template-columns: repeat(4,1fr); }
  .gallery-main { height: 340px; }
  .rest-layout { grid-template-columns: 1fr; gap: 2rem; }
  .menu-cta { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-section-title, .form-group.full { grid-column: span 1; }
  .hero-badge { display: none; }
  .hero-arr { width: 42px; height: 42px; font-size: 1.4rem; }
}
 
/* ================================================================
   RESPONSIVE — 640px
================================================================ */
@media(max-width:640px){
  section { padding: 2.8rem 1.1rem; }
  .si { max-width: 100%; }
 
  /* ── HERO ── */
  #hero { height: 100svh; min-height: 580px; }
  .hero-slide {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
  }
  .hero-slide-info { display: none !important; }
  .hero-content {
    padding-top: 18vh;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    align-self: center;
    margin-top: 0;
  }
  .hero-title { font-size: 2.2rem; line-height: 1.08; margin-bottom: .9rem; }
  .hero-mark { width: 60px; height: 60px; margin-bottom: .8rem; }
  .hero-mark img { transform: translateY(0); }
  .hero-eyebrow { font-size: .55rem; letter-spacing: .25em; margin-bottom: .8rem; }
  .hero-orn { margin-bottom: .4rem; }
  .h-line { width: 24px; }
  .hero-rule { margin-bottom: 1.2rem; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: .7rem;
  }
  .btn-gold, .btn-outline { text-align: center; padding: 1rem 1.4rem; font-size: .62rem; }
  .hero-arr { width: 38px; height: 38px; font-size: 1.3rem; }
  .hero-arr-l { left: .5rem; }
  .hero-arr-r { right: .5rem; }
  .hero-dots { bottom: 2.5rem; }
  .hero-scroll { display: none; }
  .hero-badge { display: none; }
 
  /* ── NAV ── */
  #nav { padding: .8rem 1.1rem; }
  .nav-logo-img { width: 38px; height: 38px; }
  .nav-name { font-size: .92rem; }
 
  /* ── SECTIONS ── */
  .section-title { font-size: 1.75rem; }
  .about-img-main { height: 240px; }
  .about-img-badge { display: none; }
  .about-feats { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; gap: 1.2rem; }
 
  /* ── MODAL ── */
  .overlay { padding: 0; align-items: flex-end; }
  .modal { max-width: 100%; border-radius: 12px 12px 0 0; max-height: 93vh; }
  .modal-head { padding: 1rem; border-radius: 12px 12px 0 0; }
  .modal-body { padding: 1rem; }
  .modal-foot { padding: .9rem 1rem; }
  .form-grid { padding: .9rem; }
  .pill { width: 52px; height: 46px; }
 
  /* ── GALLERY ── */
  .gallery-main { height: 230px; }
  .gal-thumbs { display: none; }
  .gal-arr { width: 38px; height: 38px; font-size: 1.3rem; }
 
  /* ── RESTAURANT ── */
  .rest-photo-main { height: 190px; }
  .rest-photo-sm { height: 115px; }
  .menu-cta { flex-direction: column; }
  .open-menu-btn { width: 100%; justify-content: center; }
 
  /* ── MENU BOOK ── */
  #menuModal { padding: .5rem; align-items: flex-end; }
  .book-spread.active, .book-spread.pg-in, .book-spread.pg-out { grid-template-columns: 1fr; }
  .bpage.left { display: none; }
  .bpage { min-height: 400px; padding: 1.4rem 1.1rem; }
 
  /* ── AMENITIES ── */
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
 
  /* ── CONTACT ── */
  .contact-grid { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
 
  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  footer { padding: 2.8rem 1.1rem 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .7rem; }
 
  /* ── ADMIN ── */
  .adm-overlay { padding: 0; align-items: flex-end; }
  .adm-login { border-radius: 12px 12px 0 0; max-width: 100%; padding: 2rem 1.4rem; }
  .adm-dash { border-radius: 12px 12px 0 0; max-width: 100%; max-height: 96vh; }
  .adm-body { padding: 1.1rem; }
  .price-ctrl { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .price-ctrl-input { width: 100%; text-align: left; }
 
  /* ── FLOATING & ADMIN ── */
  .floats { bottom: 1.2rem; right: 1rem; }
  .float-btn { width: 50px; height: 50px; }
  #adminBtn { bottom: 1.2rem; left: 1rem; }
 
  /* ── SEL BAR ── */
  .sel-bar { flex-direction: column; align-items: flex-start; }
  .sb-actions { width: 100%; }
  .sb-wa, .sb-clear { flex: 1; justify-content: center; }
 
  /* ── LIGHTBOX ── */
  .lb-arr { width: 38px; height: 38px; font-size: 1.3rem; }
  .lb-arr-l { left: .3rem; }
  .lb-arr-r { right: .3rem; }
  #lbImg { max-width: 96vw; max-height: 80vh; }
}
 
/* ================================================================
   RESPONSIVE — 380px
================================================================ */
@media(max-width:380px){
  .hero-content { padding-top: 15vh; }
  .hero-title { font-size: 1.9rem; }
  .hero-mark { width: 52px; height: 52px; }
  .btn-gold, .btn-outline { font-size: .58rem; padding: .9rem 1rem; }
  .hero-eyebrow { font-size: .52rem; letter-spacing: .22em; }
  .pill { width: 46px; height: 42px; font-size: .65rem; }
  .amenities-grid { grid-template-columns: 1fr; }
}
/* ================================================================
   HERO MOBILE FIX v2 — Hotel Highway Memories
   Add this at the END of your style.css file
   (Replace previous hero mobile fix if already added)
================================================================ */
 
@media (max-width: 960px) {
  #hero {
    height: 70vw;
    min-height: 420px;
    max-height: 600px;
  }
 
  .hero-slide {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}
 
@media (max-width: 640px) {
  #hero {
    height: 75vw;
    min-height: 380px;
    max-height: 520px;
  }
 
  .hero-slide {
    background-size: cover !important;
    background-position: center top !important;
  }
 
  /* Overlay thodi halki */
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(22,18,16,.60) 0%,
        rgba(22,18,16,.08) 30%,
        rgba(22,18,16,.08) 55%,
        rgba(22,18,16,.75) 100%
      );
  }
 
  /* Content compact */
  .hero-content {
    padding-top: 8vw !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
 
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
 
  .hero-eyebrow {
    font-size: .52rem;
    letter-spacing: .22em;
    margin-bottom: .6rem;
  }
 
  .hero-rule { margin-bottom: 1rem; }
 
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: .6rem;
  }
 
  .btn-gold,
  .btn-outline {
    text-align: center;
    padding: .9rem 1.2rem;
    font-size: .58rem;
  }
 
  .hero-arr { width: 36px; height: 36px; font-size: 1.2rem; }
  .hero-arr-l { left: .4rem; }
  .hero-arr-r { right: .4rem; }
  .hero-scroll { display: none; }
  .hero-badge { display: none; }
 
  /* Dots neeche section ke andar hi rahe */
  .hero-dots { bottom: 1rem; }
}
 
@media (max-width: 380px) {
  #hero {
    height: 80vw;
    min-height: 320px;
  }
 
  .hero-title { font-size: 1.65rem; }
}
