/*
Theme Name: JB Royals — Prestige
Theme URI:  https://jbroyals.com
Version:    7.0.0
Text Domain: jb-royals
*/

/* ══ FONTS — matching Taj Hotels editorial style ══
   - Libre Baskerville: editorial serif, good weight
   - Cinzel: spaced all-caps display (like TAJ logo)
   - DM Sans: clean modern body
*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Italiana&display=swap');

/* ══ TOKENS ══ */
:root {
  --ivory:     #F9F5EC;
  --ivory2:    #F3EDE0;
  --ivory3:    #EAE2D2;
  --white:     #FFFFFF;
  --navy:      #0C1922;
  --navy2:     #152330;
  --ink:       #1A1209;
  --ink2:      #3A2E1E;
  --mute:      #7A6E5A;
  --faint:     #B5A895;
  --gold:      #B8860B;   /* darker, more like Taj */
  --gold2:     #D4A017;
  --gold3:     #8B6508;
  --gold-bg:   #F7EDD6;
  --gold-lt:   #E8C46A;
  --wa:        #16A34A;
  --wa2:       #15803D;

  /* Typography — Taj-style */
  --ff-display: 'Cinzel', 'Times New Roman', serif;       /* all-caps, spaced */
  --ff-serif:   'Libre Baskerville', Georgia, serif;      /* body serif, italic */
  --ff-logo:    'Italiana', serif;
  --ff-sans:    'DM Sans', system-ui, sans-serif;

  --ease:   cubic-bezier(.22,.61,.36,1);
  --ease2:  cubic-bezier(.16,1,.3,1);

  --sh1: 0 2px 12px rgba(12,25,34,.08);
  --sh2: 0 8px 40px rgba(12,25,34,.12);
  --sh3: 0 24px 80px rgba(12,25,34,.18);

  --nav-h: 76px;
}

/* ══ RESET ══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;margin-top:0!important;}
body{font-family:var(--ff-sans);background:var(--ivory);color:var(--ink);line-height:1.65;overflow-x:hidden;-webkit-font-smoothing:antialiased;margin:0!important;padding:0!important;}
img{display:block;max-width:100%;height:auto;object-fit:cover;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
::-webkit-scrollbar{width:4px;}
::-webkit-scrollbar-track{background:var(--ivory);}
::-webkit-scrollbar-thumb{background:var(--gold);}

/* ══ TAJ-STYLE LABEL — spaced, ruled, all caps ══ */
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
}
.lbl::before,
.lbl::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.lbl--center { justify-content: center; }
.lbl--lt { color: var(--gold-lt); }
.lbl--lt::before, .lbl--lt::after { background: var(--gold-lt); }

/* ══ HEADINGS — Cinzel display, Taj-like ══ */
/* 
  Key insight from Taj screenshots:
  - ALL CAPS with wide letter-spacing (8-12px)
  - Light/normal weight, NOT bold
  - Large size but airy, not heavy
  - Uses serif italic for subheads  
*/

.h-hero {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7.5vw, 110px);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}
.h-hero em {
  font-family: var(--ff-serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--gold-lt);
}

.h-xl {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}
.h-xl em {
  font-family: var(--ff-serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

.h-lg {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
}
.h-lg em { font-family:var(--ff-serif); font-style:italic; letter-spacing:0; text-transform:none; color:var(--gold); }

.h-md {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ink);
}
.h-md em { font-family:var(--ff-serif); font-style:italic; letter-spacing:0; text-transform:none; color:var(--gold); }

/* Italic serif subhead — like Taj section descriptions */
.h-sub {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.6;
}

.on-dark { color: #fff !important; }
.on-dark em { color: var(--gold-lt) !important; }

/* Body text */
.body { font-size: 15px; color: var(--mute); line-height: 1.9; font-weight: 300; }
.body-sm { font-size: 13px; color: var(--mute); line-height: 1.75; }
.body-xs { font-size: 11px; color: var(--faint); line-height: 1.6; letter-spacing: .3px; }

/* ══ LAYOUT ══ */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
@media(max-width:768px){ .wrap { padding: 0 20px; } }

.sec      { padding: 100px 0; background: var(--ivory); }
.sec-lt   { padding: 100px 0; background: var(--ivory2); }
.sec-dk   { padding: 100px 0; background: var(--ivory3); }
.sec-white{ padding: 100px 0; background: var(--white); }
.sec-navy { padding: 100px 0; background: var(--navy); }
@media(max-width:768px){ .sec,.sec-lt,.sec-dk,.sec-white,.sec-navy { padding: 64px 0; } }

.divider { height: 1px; border: none; background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold2) 50%, var(--gold) 70%, transparent); }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400;
  padding: 0 32px; height: 52px;
  cursor: pointer; transition: all .3s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
  border: none;
}
.btn:active { transform: scale(.98); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,.35); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid rgba(26,18,9,.2); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn--outline-lt { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn--outline-lt:hover { border-color: var(--gold-lt); color: var(--gold-lt); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa2); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(22,163,74,.3); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy2); transform: translateY(-2px); }

/* ══ HEADER — white/ivory, always solid ══ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(184,134,11,.15);
  box-shadow: 0 2px 24px rgba(12,25,34,.07);
  margin: 0; padding: 0;
}

/* Admin bar shifts */
body.admin-bar .site-header { top: 32px !important; }
@media screen and (max-width:782px) {
  body.admin-bar .site-header { top: 46px !important; }
}

.nav-wrap {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; gap: 0;
}
@media(max-width:768px){ .nav-wrap { padding: 0 18px; } }

.nav-logo { flex-shrink: 0; text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-logo-mark { font-family: var(--ff-logo); font-size: 26px; color: var(--gold3); letter-spacing: 2px; line-height: 1; }
.nav-logo-sub { font-family: var(--ff-display); font-size: 6.5px; letter-spacing: 5px; text-transform: uppercase; color: var(--mute); }

/* Nav links — Taj style: spaced caps */
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a {
  font-family: var(--ff-display);
  font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mute); font-weight: 400;
  position: relative; padding-bottom: 4px; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .32s var(--ease2);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold3); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-ctas { display: flex; align-items: center; gap: 12px; margin-left: 24px; flex-shrink: 0; }
.nav-wa-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-display); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--wa); font-weight: 400; transition: opacity .25s; white-space: nowrap;
}
.nav-wa-link:hover { opacity: .7; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 34px; height: 34px; justify-content: center; margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--ink); transition: all .32s var(--ease); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.drawer-veil { position: fixed; inset: 0; background: rgba(12,25,34,.55); z-index: 1010; opacity: 0; pointer-events: none; transition: opacity .35s; backdrop-filter: blur(3px); }
.drawer-veil.open { opacity: 1; pointer-events: all; }
.drawer { position: fixed; top: 0; right: -100%; width: min(300px,100vw); height: 100dvh; background: var(--white); border-left: 1px solid var(--ivory3); z-index: 1020; display: flex; flex-direction: column; padding: 88px 36px 44px; transition: right .46s var(--ease2); box-shadow: -8px 0 40px rgba(12,25,34,.14); }
.drawer.open { right: 0; }
.drawer a { font-family: var(--ff-display); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--ivory3); transition: color .25s, padding-left .25s; display: block; }
.drawer a:hover { color: var(--gold3); padding-left: 8px; }
.drawer-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border: 1px solid var(--ivory3); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--mute); cursor: pointer; transition: all .25s; }
.drawer-close:hover { border-color: var(--gold); color: var(--gold3); }

/* ══════════════════════════════════════════════════
   HERO SLIDER — full screen, flush to nav, no gap
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: block;
  width: 100%;
  height: calc(100svh - var(--nav-h));
  min-height: 560px;
  max-height: 980px;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--ink);
  border: none; outline: none; padding: 0;
  font-size: 0; line-height: 0;  /* kill whitespace text nodes */
}

/* Admin bar pushes everything down */
body.admin-bar .hero {
  margin-top: calc(32px + var(--nav-h));
  height: calc(100svh - 32px - var(--nav-h));
}
@media screen and (max-width:782px) {
  body.admin-bar .hero {
    margin-top: calc(46px + var(--nav-h));
    height: calc(100svh - 46px - var(--nav-h));
  }
}

.slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; z-index: 1;
  transition: opacity 1.1s ease;
  font-size: 1rem; line-height: 1.65;
}
.slide.is-active { opacity: 1; z-index: 2; }

.slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.slide.is-active .slide-img { transform: scale(1); }

/* Overlay — dark at bottom/left, like Taj */
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(12,18,9,.82) 0%, rgba(12,18,9,.5) 35%, rgba(12,18,9,.1) 70%, transparent 100%),
    linear-gradient(90deg, rgba(12,18,9,.5) 0%, transparent 60%);
}

/* ══ HERO CONTENT — bottom-left, Taj style ══ */
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 72px 72px;
  z-index: 3;
  max-width: 900px;
}

/* Entrance animations */
.slide-eyebrow,
.slide-title,
.slide-sub,
.slide-ctas {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease2), transform .7s var(--ease2);
}
.slide.is-active .slide-eyebrow { opacity:1; transform:none; transition-delay:.1s; }
.slide.is-active .slide-title   { opacity:1; transform:none; transition-delay:.22s; }
.slide.is-active .slide-sub     { opacity:1; transform:none; transition-delay:.38s; }
.slide.is-active .slide-ctas    { opacity:1; transform:none; transition-delay:.52s; }

/* Eyebrow — "— EXPERIENCES" Taj style */
.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.slide-eyebrow::before {
  content: '';
  width: 44px; height: 1px;
  background: var(--gold-lt);
  flex-shrink: 0;
}
.slide-eyebrow span {
  font-family: var(--ff-display);
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold-lt); font-weight: 400;
}

/* Headline — ALL CAPS, wide spacing, like "EXPERIENCES" on Taj */
.slide-headline {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
}
.slide-headline .italic-line {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-lt);
}

.slide-sub {
  font-family: var(--ff-serif);
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.slide-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ══ HERO CHROME ══ */
.hero-dots {
  position: absolute; bottom: 36px; right: 72px;
  z-index: 10; display: flex; align-items: center; gap: 10px;
}
.hero-dot {
  width: 28px; height: 1.5px;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  padding: 0; transition: all .3s var(--ease);
}
.hero-dot.is-on { width: 48px; background: var(--gold-lt); }

.hero-ctr {
  position: absolute; bottom: 32px; right: 72px;
  z-index: 10;
  display: flex; align-items: baseline; gap: 8px;
  /* hidden by default, shown only when dots are not */
}

.hero-bar {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--gold-lt);
  z-index: 10; width: 0%;
  transition: width linear;
}

/* Prev/next arrows — positioned right edge */
.hero-arr-wrap {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-arr {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
  font-family: sans-serif;
}
.hero-arr:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--ff-display); font-size: 7px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.25); pointer-events: none;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(var(--gold-lt), transparent);
  animation: scrollBar 2.5s ease-in-out infinite;
}
@keyframes scrollBar {
  0%,100%{transform:scaleY(0);transform-origin:top;opacity:1;}
  50%{transform:scaleY(1);transform-origin:top;opacity:1;}
  51%{transform-origin:bottom;}
  99%{transform:scaleY(0);transform-origin:bottom;opacity:0;}
}

/* ══ MOBILE HERO FIXES ══
   On mobile: smaller font, stack buttons vertically,
   reduce padding so content isn't inside the menu area
══ */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }

  .slide-content {
    padding: 0 22px 80px;
    max-width: 100%;
  }

  .slide-headline {
    font-size: clamp(32px, 9vw, 52px) !important;
    letter-spacing: 3px;
  }

  .slide-sub { font-size: 14px; max-width: 90%; }

  .slide-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .slide-ctas .btn {
    width: 100%;
    justify-content: center;
    height: 48px;
    font-size: 9px;
  }

  .hero-dots { right: 20px; bottom: 28px; }
  .hero-arr-wrap { display: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .slide-content { padding: 0 18px 72px; }
  .slide-headline { font-size: clamp(28px, 8vw, 44px) !important; letter-spacing: 2px; }
  .slide-eyebrow span { font-size: 9px; letter-spacing: 4px; }
}

/* ══ MARQUEE ══ */
.marquee { background: var(--navy); padding: 16px 0; overflow: hidden; border-top: 1px solid rgba(184,134,11,.1); border-bottom: 1px solid rgba(184,134,11,.1); }
.m-track { display: flex; animation: mScroll 32s linear infinite; white-space: nowrap; }
.m-item { display: inline-flex; align-items: center; padding: 0 44px; font-family: var(--ff-display); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(249,245,236,.38); flex-shrink: 0; border-right: 1px solid rgba(184,134,11,.1); }
.m-item span { color: var(--gold-lt); margin-right: 16px; }
@keyframes mScroll { from{transform:translateX(0);}to{transform:translateX(-50%);} }

/* ══ SECTION HEAD ══ */
.sh { margin-bottom: 52px; }
.sh--c { text-align: center; }
.sh--c .body { max-width: 560px; margin: 14px auto 0; font-style: italic; }
.sh--c .h-sub { max-width: 560px; margin: 12px auto 0; }
.sh .lbl { margin-bottom: 16px; }

/* ══ ABOUT ══ */
.about-grid { display: grid; grid-template-columns: 52% 1fr; min-height: 580px; }
.about-media { position: relative; overflow: hidden; background: var(--ivory3); }
.about-img { width: 100%; height: 100%; object-fit: cover; transition: transform 10s ease-out; }
.about-media:hover .about-img { transform: scale(1.03); }
.about-accent { position: absolute; bottom: 0; right: 0; background: var(--gold); padding: 24px 28px; text-align: center; }
.about-accent-n { font-family: var(--ff-logo); font-size: 44px; color: #fff; line-height: 1; }
.about-accent-l { font-family: var(--ff-display); font-size: 7px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 4px; }
.about-copy { background: var(--ivory); padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.about-copy .lbl { margin-bottom: 16px; }
.about-copy .body { margin: 14px 0 28px; max-width: 440px; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.feat { display: flex; align-items: flex-start; gap: 12px; padding: 15px 17px; background: var(--ivory2); border-left: 2px solid var(--gold); transition: background .25s; }
.feat:hover { background: var(--ivory3); }
.feat-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.feat-title { font-family: var(--ff-display); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); margin-bottom: 3px; font-weight: 400; }
.feat-sub { font-size: 11px; color: var(--mute); }

/* ══ STATS ══ */
.stats-bar { background: var(--navy); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 44px 20px; border-right: 1px solid rgba(184,134,11,.1); transition: background .25s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(184,134,11,.04); }
.stat-n { font-family: var(--ff-serif); font-size: 52px; font-style: italic; color: var(--gold-lt); line-height: 1; }
.stat-l { font-family: var(--ff-display); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(249,245,236,.35); margin-top: 6px; }

/* ══ ROOMS ══ */
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--ivory3); }
.room { background: var(--white); overflow: hidden; }
.room-img-wrap { position: relative; overflow: hidden; height: 260px; }
.room-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease2); }
.room:hover .room-img { transform: scale(1.05); }
.room-ribbon { position: absolute; top: 18px; left: 0; background: var(--gold); color: #fff; font-family: var(--ff-display); font-size: 7px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400; padding: 7px 16px; }
.room-body { padding: 26px 28px; }
.room-ghost { font-family: var(--ff-serif); font-size: 60px; font-style: italic; color: var(--gold-bg); line-height: 1; float: right; margin: -5px -3px 0 0; }
.room-name { font-family: var(--ff-display); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; line-height: 1.4; font-weight: 400; }
.room-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; padding-bottom: 12px; border-bottom: 1px solid var(--ivory3); }
.r-spec { display: flex; align-items: flex-start; gap: 7px; }
.r-icon { color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.r-lbl { font-family: var(--ff-display); font-size: 7.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); }
.r-val { font-size: 12px; color: var(--ink); font-weight: 500; margin-top: 2px; }

/* accordion */
.racc { border-top: 1px solid var(--ivory3); }
.racc-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 12px 0; font-family: var(--ff-display); font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold3); font-weight: 400; cursor: pointer; transition: color .25s; }
.racc-trigger:hover { color: var(--gold); }
.racc-icon { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gold); transition: all .3s var(--ease); flex-shrink: 0; }
.racc-trigger.on .racc-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.racc-panel { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.racc-panel.on { max-height: 440px; }
.racc-inner { padding-bottom: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag { background: var(--gold-bg); color: var(--gold3); font-family: var(--ff-display); font-size: 7px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 10px; font-weight: 400; border: 1px solid rgba(184,134,11,.2); }
.room-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ══ FACILITIES ══ */
.fac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--ivory3); }
.fac { background: var(--white); padding: 40px 30px; position: relative; overflow: hidden; transition: background .3s; border-bottom: 2px solid transparent; }
.fac::before { content: attr(data-n); position: absolute; top: -6px; right: 10px; font-family: var(--ff-serif); font-size: 84px; font-style: italic; color: rgba(184,134,11,.07); line-height: 1; pointer-events: none; }
.fac:hover { background: var(--ivory); border-bottom-color: var(--gold); }
.fac-icon { width: 48px; height: 48px; background: var(--gold-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; transition: background .28s; }
.fac:hover .fac-icon { background: var(--gold); }
.fac-name { font-family: var(--ff-display); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; font-weight: 400; }
.fac-desc { font-size: 13px; color: var(--mute); line-height: 1.78; }

/* ══ GALLERY ══ */
.gal { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 264px 264px; gap: 2px; background: var(--ivory3); }
.gc { position: relative; overflow: hidden; cursor: pointer; }
.gc:nth-child(1){grid-column:span 5;grid-row:span 2;}
.gc:nth-child(2){grid-column:span 4;}
.gc:nth-child(3){grid-column:span 3;}
.gc:nth-child(4){grid-column:span 4;}
.gc:nth-child(5){grid-column:span 3;}
.gc:nth-child(6){grid-column:span 4;}
.gc:nth-child(7){grid-column:span 8;}
.gc img { width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease2); }
.gc:hover img { transform:scale(1.06); }
.gc-ov { position:absolute;inset:0;background:rgba(12,18,9,0);display:flex;align-items:center;justify-content:center;transition:background .35s; }
.gc:hover .gc-ov { background:rgba(12,18,9,.42); }
.gc-plus { width:48px;height:48px;border:1.5px solid var(--gold-lt);color:var(--gold-lt);display:flex;align-items:center;justify-content:center;font-size:22px;opacity:0;transform:scale(.7);transition:all .3s var(--ease2); }
.gc:hover .gc-plus { opacity:1;transform:scale(1); }
.gc-lbl { position:absolute;bottom:0;left:0;right:0;padding:36px 16px 14px;background:linear-gradient(transparent,rgba(12,18,9,.65));transform:translateY(100%);transition:transform .3s var(--ease2); }
.gc:hover .gc-lbl { transform:translateY(0); }
.gc-lbl span { font-family:var(--ff-display);font-size:9px;letter-spacing:3px;text-transform:uppercase;color:var(--gold-lt);font-weight:400; }

/* ══ TESTIMONIALS ══ */
.testi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi { background: var(--white); padding: 40px 32px; border-top: 2px solid var(--gold); box-shadow: var(--sh1); transition: all .3s; }
.testi:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.testi-q { font-family: var(--ff-serif); font-size: 68px; font-style: italic; color: var(--gold); opacity: .25; line-height: .4; margin-bottom: 18px; display: block; }
.testi-stars { color: var(--gold); font-size: 11px; letter-spacing: 4px; margin-bottom: 12px; }
.testi-text { font-family: var(--ff-serif); font-size: 15px; font-style: italic; color: var(--ink2); line-height: 1.85; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 18px; font-style: italic; color: #fff; flex-shrink: 0; }
.testi-name { font-family: var(--ff-display); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); }
.testi-loc { font-size: 11px; color: var(--mute); margin-top: 2px; }

/* ══ CTA ══ */
.cta-banner { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-ov { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,18,9,.9) 38%, rgba(12,18,9,.4) 100%); }
.cta-inner { position: relative; z-index: 2; max-width: 600px; }
.cta-inner .lbl { margin-bottom: 20px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ══ PAGE BANNER ══ */
.pg-banner {
  position: relative; overflow: hidden;
  height: 380px;
  display: flex; align-items: flex-end; padding-bottom: 52px;
  margin-top: var(--nav-h);
}
body.admin-bar .pg-banner { margin-top: calc(32px + var(--nav-h)); }
@media screen and (max-width:782px) {
  body.admin-bar .pg-banner { margin-top: calc(46px + var(--nav-h)); }
}
.pg-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: pbZ 10s ease-out both; }
@keyframes pbZ { from{transform:scale(1.04);}to{transform:scale(1);} }
.pg-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,18,9,.82) 0%, rgba(12,18,9,.28) 60%, transparent 100%); }
.pg-inner { position: relative; z-index: 2; }
.pg-title { font-family: var(--ff-display); font-size: clamp(32px,5.5vw,64px); font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: #fff; line-height: 1.1; }
.pg-title em { font-family: var(--ff-serif); font-style: italic; letter-spacing: 0; text-transform: none; color: var(--gold-lt); }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-family: var(--ff-display); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(249,245,236,.42); }
.breadcrumb a { color: var(--gold-lt); transition: color .25s; }
.breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: rgba(184,134,11,.35); }

/* ══ CONTACT ══ */
.contact-layout { display: grid; grid-template-columns: 320px 1fr; }
.contact-aside { background: var(--navy); padding: 68px 44px; }
.contact-aside .lbl { margin-bottom: 14px; }
.contact-form { background: var(--ivory); padding: 68px 52px; }
.contact-form .lbl { margin-bottom: 12px; }
.c-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
.c-ic { width: 40px; height: 40px; background: rgba(184,134,11,.1); border: 1px solid rgba(184,134,11,.2); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; transition: all .25s; }
.c-item:hover .c-ic { background: var(--gold); border-color: var(--gold); }
.c-lbl { font-family: var(--ff-display); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px; }
.c-val { font-size: 14px; color: rgba(249,245,236,.78); line-height: 1.5; }
.c-val a { color: inherit; transition: color .25s; }
.c-val a:hover { color: var(--gold-lt); }

/* Form fields */
.ff { margin-bottom: 16px; }
.ff label { display: block; font-family: var(--ff-display); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--mute); margin-bottom: 7px; }
.ff input, .ff select, .ff textarea { width: 100%; background: var(--white); border: 1.5px solid var(--ivory3); color: var(--ink); padding: 13px 15px; font-size: 14px; font-family: var(--ff-sans); outline: none; border-radius: 0; -webkit-appearance: none; transition: border-color .25s, background .25s; }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--gold); background: var(--white); }
.ff textarea { height: 118px; resize: vertical; }
.ff select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' fill='none'%3E%3Cpath d='M1 1l4.5 4 4.5-4' stroke='%23B8860B' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; background-color: var(--white); }
.ff2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ══ FOOTER ══ */
.site-footer { background: var(--navy); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 50px; padding: 72px 0 52px; }
.footer-brand .nav-logo-mark { font-size: 28px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(249,245,236,.36); line-height: 1.82; max-width: 250px; margin-bottom: 22px; }
.f-soc { display: flex; gap: 8px; }
.f-soc a { width: 32px; height: 32px; border: 1px solid rgba(184,134,11,.15); display: flex; align-items: center; justify-content: center; color: rgba(249,245,236,.28); font-size: 11px; transition: all .25s; }
.f-soc a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.f-col h5 { font-family: var(--ff-display); font-size: 8px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.f-links li { margin-bottom: 9px; }
.f-links a { font-size: 13px; color: rgba(249,245,236,.35); transition: color .25s, padding-left .25s; display: inline-block; }
.f-links a:hover { color: var(--gold-lt); padding-left: 5px; }
.f-ci { display: flex; gap: 10px; margin-bottom: 11px; align-items: flex-start; }
.f-ci .ic { color: var(--gold-lt); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.f-ci span { font-size: 13px; color: rgba(249,245,236,.35); line-height: 1.5; }
.f-ci a { color: inherit; }
.f-ci a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(184,134,11,.1); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-family: var(--ff-display); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(249,245,236,.22); }
.footer-bottom em { color: var(--gold-lt); font-style: normal; }
.hr-gold { height: 1px; border: none; background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold2) 50%, var(--gold) 70%, transparent); }

/* ══ MODAL ══ */
.modal { position: fixed; inset: 0; background: rgba(12,18,9,.78); backdrop-filter: blur(10px); z-index: 9900; opacity: 0; pointer-events: none; transition: opacity .38s; display: flex; align-items: center; justify-content: center; }
.modal.on { opacity: 1; pointer-events: all; }
.modal-box { background: var(--ivory); width: 90%; max-width: 620px; max-height: 92dvh; overflow-y: auto; padding: 48px 44px; border-top: 2px solid var(--gold); position: relative; transform: translateY(18px) scale(.97); transition: all .4s var(--ease2); box-shadow: var(--sh3); }
.modal.on .modal-box { transform: none; }
.modal-x { position: absolute; top: 14px; right: 14px; background: none; border: 1px solid var(--ivory3); color: var(--mute); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all .25s; }
.modal-x:hover { border-color: var(--gold); color: var(--gold3); }

/* ══ WA FAB ══ */
.wa-fab { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-fab-tip { background: var(--navy); color: #fff; font-family: var(--ff-display); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 7px 12px; opacity: 0; transform: translateX(6px); transition: all .28s var(--ease2); pointer-events: none; white-space: nowrap; }
.wa-fab:hover .wa-fab-tip { opacity: 1; transform: none; }
.wa-fab-btn { width: 52px; height: 52px; background: var(--wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 6px 20px rgba(22,163,74,.35); transition: all .28s var(--ease); }
.wa-fab-btn:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(22,163,74,.45); }

/* ══ REVEAL ══ */
.rev { opacity: 0; transform: translateY(24px); transition: opacity .72s var(--ease2), transform .72s var(--ease2); }
.rev.on { opacity: 1; transform: none; }
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;}
.d4{transition-delay:.32s;} .d5{transition-delay:.4s;} .d6{transition-delay:.48s;}

/* ══ RESPONSIVE ══ */
@media(max-width:1100px){
  .about-grid{grid-template-columns:1fr;}
  .contact-layout{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .stats-row{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .nav-links,.nav-ctas{display:none;}
  .hamburger{display:flex;}
  .rooms-grid{grid-template-columns:1fr;}
  .testi-row{grid-template-columns:1fr;}
  .fac-grid{grid-template-columns:1fr 1fr;}
  .gal{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
  .gc:nth-child(n){grid-column:span 1;grid-row:span 1;height:190px;}
  .gc:nth-child(1){grid-column:span 2;}
  .footer-top{grid-template-columns:1fr;gap:30px;}
  .modal-box{padding:32px 20px;}
  .ff2{grid-template-columns:1fr;}
  .about-copy{padding:48px 26px;}
  .about-feats{grid-template-columns:1fr;}
  .contact-aside,.contact-form{padding:48px 22px;}
  .cta-btns{flex-direction:column;align-items:flex-start;}
}
@media(max-width:480px){
  .fac-grid{grid-template-columns:1fr;}
  .stats-row{grid-template-columns:1fr 1fr;}
  .wrap{padding:0 18px;}
}
