 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c4973a; --gold-lt: #e8d199; --gold-dk: #8a6420; --gold-glow: rgba(196,151,58,0.18);
  --dark: #0d0b08; --charcoal: #1a1712; --warm: #4a3f35; --ivory: #faf6ef;
  --cream: #f5f0e6; --cream-dk: #ece6d8; --muted: #8a8078; --white: #ffffff;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', sans-serif;
    --main-font: 'Barlow', sans-serif; 
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {  background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none ; color: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilda Display', serif; 
}

p {
    font-family: 'Barlow', sans-serif !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #666;
    margin-bottom: 20px;
}
/* ══════════════════════════════════════
   FEEDBACK / SUGGESTIONS MODAL
══════════════════════════════════════ */
.fm-modal-wrap { position: fixed; inset: 0; z-index: 99980; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.fm-modal-wrap.active { opacity: 1; pointer-events: all; }
.fm-backdrop { position: absolute; inset: 0; background: rgba(5,4,3,0.88); backdrop-filter: blur(14px); }
.fm-modal { position: relative; z-index: 2; background: var(--dark); border: 1px solid rgba(196,151,58,0.22); border-top: 3px solid var(--gold); width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; transform: translateY(40px) scale(0.97); transition: transform 0.45s var(--ease-out); scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.fm-modal-wrap.active .fm-modal { transform: translateY(0) scale(1); }
.fm-modal::-webkit-scrollbar { width: 4px; }
.fm-modal::-webkit-scrollbar-thumb { background: var(--gold); }

.fm-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 36px 44px 28px; }
.fm-title-group .fm-eyebrow { font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.fm-title-group h2 {     font-family: 'Gilda Display', serif; font-size: 36px; font-weight: 300; color: var(--ivory); line-height: 1; }
.fm-title-group h2 em { font-style: italic; color: var(--gold-lt); }
.fm-close { width: 40px; height: 40px; border: 1px solid rgba(196,151,58,0.3); background: transparent; color: rgba(255,255,255,0.5); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; flex-shrink: 0; margin-left: 20px; }
.fm-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.fm-body { padding: 0 44px 44px; }
.fm-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.85; margin-bottom: 28px; border-left: 2px solid rgba(196,151,58,0.22); padding-left: 14px; }
.fm-form-grid { display: flex; flex-direction: column; gap: 18px; }
.fm-form-group { display: flex; flex-direction: column; gap: 8px; }
.fm-form-group label { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.fm-form-group label i { font-size: 10px; }
.fm-input { width: 100%; background: #000 !important; border: 1px solid rgba(196,151,58,0.2); color: var(--ivory);  font-weight: 300; padding: 13px 16px; outline: none; transition: border-color 0.3s, background 0.3s; -webkit-appearance: none; }
.fm-input:focus { border-color: var(--gold); background: rgba(196,151,58,0.05) !important; }
.fm-input::placeholder { color: rgba(255,255,255,0.25); }
.fm-textarea { width: 100%; background: #000 !important; border: 1px solid rgba(196,151,58,0.2); color: var(--ivory);  font-weight: 300; padding: 13px 16px; outline: none; transition: border-color 0.3s, background 0.3s; resize: none; line-height: 1.75; -webkit-appearance: none; }
.fm-textarea:focus { border-color: var(--gold); background: rgba(196,151,58,0.05) !important; }
.fm-textarea::placeholder { color: rgba(255,255,255,0.25); }
.fm-divider { height: 1px; background: rgba(196,151,58,0.12); margin: 4px 0; }
.fm-submit { width: 100%; background: var(--gold); border: none; color: var(--dark);  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 18px; cursor: pointer; margin-top: 28px; transition: all 0.4s var(--ease); display: flex; align-items: center; justify-content: center; gap: 12px; }
.fm-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,151,58,0.3); }
.fm-disclaimer { font-size: 10.5px; color: rgba(255,255,255,0.22); text-align: center; margin-top: 16px; }

 
/* ── TOP BAR ── */
.top-bar { background: var(--dark); height: 42px; overflow: hidden; transition: height 0.45s var(--ease), opacity 0.45s var(--ease); }
.top-bar .tb-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.top-bar .tb-left { display: flex; align-items: center; gap: 0; }
.top-bar .tb-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.65); font-size: 10px; font-weight: 300;letter-spacing: 2px; }
.top-bar .tb-item i { color: var(--gold); font-size: 10.5px; }
.top-bar .tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); margin: 0 20px; }
.top-bar .tb-right { display: flex; align-items: center; gap: 24px;justify-content: center; }
.top-bar .tb-social { display: flex; align-items: center; gap: 14px; }
.top-bar .tb-social a { color: rgba(255,255,255,0.5); font-size: 11.5px; transition: color 0.3s; }
.top-bar .tb-social a:hover { color: var(--gold); }
 .tb-book { background: var(--gold); color: var(--dark);   font-size: 14px;  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 20px; border: none;  transition: background 0.3s; }
.top-bar .tb-book:hover { background: var(--gold-lt); }


/* ── MAIN NAV ── */

.main-nav { background: transparent;  transition: box-shadow 0.4s, background 0.4s; }
.main-nav.elevated { box-shadow: 0 8px 40px rgba(0,0,0,0.5); background: rgba(10,8,5,0.99); }
.main-nav .nav-wrap { display: flex; align-items: center; justify-content: space-between;  }
.main-nav .nav-brand .brand-name {     font-family: 'Gilda Display', serif; font-size: 24px; font-weight: 600; color: var(--ivory); letter-spacing: 1.5px; line-height: 1; }
.main-nav .nav-brand img{width: 250px;}
.main-nav .nav-brand .brand-tag { font-size: 8.5px; font-weight: 400; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.main-nav .nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding-top: 10px;}
.main-nav .nav-menu .nav-item { position: relative; }
.main-nav .nav-menu .nav-link { font-family: 'Tenor Sans', sans-serif;font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #fff; padding: 10px 10px 10px 5px; transition: color 0.3s; position: relative; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.main-nav .nav-menu .nav-link::after { content: ''; position: absolute; bottom: 5px; left: 13px; right: 13px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.main-nav .nav-menu .nav-link:hover { color: var(--gold-lt); }
.main-nav .nav-menu .nav-link:hover::after { transform: scaleX(1); }

/* ── Dropdown base ── */
.main-nav .nav-menu .nav-link .dd-arrow {
  font-size: 8px;
  transition: transform 0.3s var(--ease);
  color: var(--gold);
  opacity: 0.7;
}
.main-nav .nav-menu .nav-item.has-dropdown:hover .nav-link .dd-arrow {
  transform: rotate(180deg);
}
.main-nav .nav-menu .nav-item.has-dropdown:hover > .custom-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* ── Dropdown panel ── */
.custom-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13, 11, 8, 0.99);
  border: 1px solid rgba(196, 151, 58, 0.2);
  border-top: 2px solid var(--gold);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  z-index: 200;
  /* remove min-width — grids control sizing */
}

/* ── Grid layouts ── */
.custom-dropdown.dd-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 12px;
  width: max-content;
}
.custom-dropdown.dd-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 12px;
  width: max-content;
}

/* ── Each card item ── */
.custom-dropdown .dd-item {
  display: flex;
  flex-direction: column;   /* stack image above meta */
  align-items: stretch;
  gap: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 151, 58, 0.12);
  border-top: 2px solid transparent;
  transition: all 0.25s;
  overflow: hidden;
  text-decoration: none;
}
.custom-dropdown .dd-item:hover {
  background: rgba(196, 151, 58, 0.06);
  /* border-top-color: var(--gold); */
  color: var(--gold-lt);
}

/* ── Image thumbnail ── */
.custom-dropdown .dd-item .dd-ico {
  /* width: 100%; */
  /* height: 110px; */
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.custom-dropdown .dd-item .dd-ico .dd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.custom-dropdown.dd-cols-2 .dd-item .dd-ico .dd-img{
    width: 70% !important;
    padding-top: 10px;
}

.custom-dropdown.dd-cols-2 .dd-item .dd-ico {
    text-align: -webkit-center;
}

.custom-dropdown .dd-item:hover .dd-ico .dd-img {
  transform: scale(1.05);
}

/* ── Text meta section ── */
.custom-dropdown .dd-item .dd-meta {

  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px 14px;
}
.custom-dropdown .dd-item .dd-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.custom-dropdown .dd-item .dd-sublabel {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* ── Price line ── */
.custom-dropdown .dd-item .dd-price {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
  opacity: 0.85;
  font-weight: 400;
  margin-top: 2px;
}
 .custom-dropdown.default .dd-item { display: flex; align-items: center; gap: 14px; padding: 0px 10px; color: rgba(255, 255, 255, 0.55); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.25s; flex-direction: row; width: 100%;}
 .custom-dropdown.default .dd-item .dd-ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(250,246,239,0.04); transition: all 0.2s var(--ease); flex-shrink: 0; font-size: 12px; }
.custom-dropdown.default .dd-item .dd-meta { display: flex; flex-direction: column; gap: 3px; padding: 13px 0 15px; border-bottom: 0.5px solid rgba(250,246,239,0.07); flex: 1; min-width: 0; overflow: hidden; }
.custom-dropdown.default .dd-item:last-child .dd-meta { border-bottom: none; }
.custom-dropdown.default .dd-item .dd-label { font-size: 11px; letter-spacing: 1.8px; color: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.custom-dropdown.default .dd-item .dd-sub { font-size: 9px; letter-spacing: 1px; color: var(--warm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.custom-dropdown.default .dd-item:hover { color: var(--gold-lt); background: var(--gold-glow); border-left-color: var(--gold); padding-left: 24px; }
.custom-dropdown.default .dd-item:hover .dd-ico { background: rgba(196,151,58,0.15); color: var(--gold-lt); }
.custom-dropdown.default .dd-item:active { background: rgba(196,151,58,0.25); color: var(--ivory); }

/* ── Action buttons ── */
.custom-dropdown .dd-buttons {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.custom-dropdown .dd-buttons a {
  flex: 1;
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 4px;
  text-decoration: none;
  border: 1px solid rgba(196, 151, 58, 0.35);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}
.custom-dropdown .dd-buttons a:last-child {
  background: rgba(196, 151, 58, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.custom-dropdown .dd-buttons a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.custom-dropdown .dd-divider {
  height: 1px;
  background: rgba(196, 151, 58, 0.1);
  margin: 6px 0;
}

/* ── Mobile: collapse back to vertical, hide images ── */
@media (max-width: 991px) {
  .custom-dropdown,
  .custom-dropdown.dd-cols-3,
  .custom-dropdown.dd-cols-2 {
    position: static;
    display: none;           /* toggled by .dd-open */
    grid-template-columns: 1fr;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(196, 151, 58, 0.2);
    padding: 8px 0;
    opacity: 1;
    pointer-events: all;
    gap: 0;
  }
  .has-dropdown.dd-open > .custom-dropdown {
    display: grid;
  }

  /* hide image entirely on mobile */
  .custom-dropdown .dd-item .dd-ico {
    display: none !important;
  }

  .custom-dropdown .dd-item {
    border: none;
    border-bottom: 1px solid rgba(196, 151, 58, 0.08);
    border-left: 2px solid transparent;
    padding: 0 !important;
  }
  .custom-dropdown .dd-buttons a{font-size:12px}
  .custom-dropdown .dd-item .dd-price { font-size: 16px; }
  .custom-dropdown .dd-item:hover {
    border-left-color: var(--gold);
    padding-left: 6px;
  }
  .custom-dropdown .dd-item .dd-meta {
    padding: 10px 18px;
  }
}
.main-nav .nav-book { background: var(--gold); color: var(--dark); font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 10px 18px; border: none;  transition: all 0.4s var(--ease-out); white-space: nowrap; margin-left: 5px; display: none; }
.main-nav .nav-toggle { display: none; flex-direction: column; gap: 5px;  padding: 6px; }
.main-nav .nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: all 0.35s; }
/* ── Header base transitions ── */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Scrolled — locks to viewport */
header.scrolled {
  position: fixed;
  top: 0;
}
/* .main-nav {
  transition:  0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  will-change: background;
} */

/* Top-bar smooth collapse (use max-height, never height:0 directly) */
.top-bar { 
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  pointer-events: auto;
}
header.scrolled .top-bar {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
/* Default — overlays the hero, out of flow */

header.scrolled .main-nav           { background: rgba(10,8,5,0.99); }
header.scrolled .main-nav .nav-book { display: block; }
header.scrolled .main-nav .nav-menu { padding-top: 0; }

/* ── Logo cross-fade ── */
.nav-brand {
  position: relative;
  display: inline-flex;
  top: 10px;
  align-items: center;
}

header.scrolled .nav-brand { 
  top: 0px; 
}

#siteLogo,
#siteLogoScrolled {
  transition: opacity 0.35s ease, width 0.35s ease;
  /* width: 120px; */
}

header.scrolled .main-nav .nav-brand img {
    width: 210px;
}

/* Default state: show full logo, hide icon */
#siteLogo        { opacity: 1;  position: relative; }
#siteLogoScrolled{ opacity: 0;  position: absolute; left: 0; width: 70px; }

/* Scrolled state: hide full logo, show icon */
header.scrolled #siteLogo         { opacity: 0;  pointer-events: none; }
header.scrolled #siteLogoScrolled { opacity: 1; }

.unscroll-book {
    text-align: end;
    display: flex;
    position: relative;
    right: 13px;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
header.scrolled .unscroll-book{
  display: none;
}

/* ══════════════════════════════════════
   HERO — FULLSCREEN IMMERSIVE
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; 
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Fullscreen background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../Images/Front-building.webp') ;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; 
}

/* Multi-layer veil for depth */
.hero-veil-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
  z-index: 1;
}
.hero-veil-2 {
  position: absolute; inset: 0;
  /* background: linear-gradient(to top, rgba(10,8,5,0.88) 0%, transparent 50%); */
  z-index: 1;
}

/* Grain texture */
.hero-grain {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px; z-index: 2; pointer-events: none;
}

/* Diagonal decorative line */
.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 52%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(196,151,58,0.25) 30%, rgba(196,151,58,0.12) 70%, transparent 100%);
  z-index: 3;
  pointer-events: none;
  display: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 9%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.hero-left-col {
  text-align: center;
  margin-top: 450px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px; height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(196,151,58,0.3));
  flex-shrink: 0;
}

.main-hero .hero-title {
    font-size: 35px;
    font-weight: 300;
    line-height: 1;
    color: #a5c5d1;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(28px);
    letter-spacing: -1px;
    display: inline-flex;
    width: 100%;
    gap: 10px;
    justify-content: center;
    
    flex-direction: column;
}

.main-hero .hero-title span{
    color: #fff;
    font-size: 38px;
    font-style: normal; 
}
.main-hero .hero-title .accent {
  font-style: italic;
  color: var(--gold-lt);
  display: contents;
}
.main-hero .hero-title .outline-text {
    -webkit-text-stroke: 1px rgb(213 195 165);
    color: transparent;
    display: block;
    font-size: clamp(48px, 5.8vw, 90px);
    font-family: auto;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,151,58,0.08);
      backdrop-filter: blur(20px);
  border: 1px solid rgba(196,151,58,0.28);
  padding: 9px 18px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
}
.hero-location i { color: var(--gold); font-size: 10px; }
.hero-location span { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.hero-desc {
    /* font-size: 14.5px; */
    font-weight: 300;
    line-height: 2;
    color: rgb(250 246 239 / 87%);
    max-width: 550px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(18px);
}

 

 

 
.hero-stat-body {}
.hero-stat-val {
  /*     font-family: 'Gilda Display', serif; */
  font-size: 28px;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Quick-book bar */
.hero-booking-bar {
  margin-top: 18px;
  background: rgba(13,11,8,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196,151,58,0.2);
  padding: 22px 24px;
}
.hbb-label {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.hbb-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.hbb-row { display: flex; gap: 0; }
.hbb-field {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.18);
  border-right: none;
  padding: 10px 14px;
  color: var(--ivory);
  
  font-size: 11px;
  outline: none;
  transition: border-color 0.3s;
}
.hbb-field:last-of-type { border-right: 1px solid rgba(196,151,58,0.18); }
.hbb-field::placeholder { color: rgba(255,255,255,0.25); font-size: 10px; letter-spacing: 1px; }
.hbb-field:focus { border-color: var(--gold); }
.hbb-btn {
  background: var(--gold);
  border: none;
  color: var(--dark);
  
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  
  white-space: nowrap;
  transition: background 0.3s;
}
.hbb-btn:hover { background: var(--gold-lt); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 9%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  display: none;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0; height: 1px; width: 100%;
  background: var(--gold-lt);
  animation: scrollSlide 2.2s ease-in-out infinite;
}
@keyframes scrollSlide { 0% { left: -100%; } 100% { left: 100%; } }

 

/* ── SECTION COMMONS ── */
.sec-tag { font-size: 10px; font-weight: 500; letter-spacing: 5.5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sec-tag::before { content: ''; width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sec-title {     font-family: 'Gilda Display', serif; font-size: clamp(34px, 5vw, 62px); font-weight: 300; line-height: 1.05; color: var(--charcoal); }
.sec-title.on-dark { color: var(--ivory); }
.sec-title em { font-style: italic; color: var(--gold); }
.sec-rule { width: 56px; height: 1px; background: var(--gold); margin: 22px 0; }
.sec-body { font-size: 16px; font-weight: 300;  color: var(--muted); }
.sec-body.on-dark { color: rgba(250,246,239,0.42); }

/* ── OVERVIEW ── */
.overview { padding: 60px 0 60px; background: var(--cream); position: relative; overflow: hidden; }
.overview::before { content: ''; position: absolute; right: -100px; top: -100px; width: 440px; height: 440px; border: 1px solid rgba(196,151,58,0.1); border-radius: 50%; pointer-events: none; }
.overview .ov-text { padding-right: 15px; }
.overview .ov-text  .ov-text-p{font-size: 22px; font-weight: 400; font-style: italic; color: var(--warm); line-height: 1.5; margin-bottom: 20px;}
.overview .ov-stats { display: none; gap: 44px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(196,151,58,0.18); }
.overview .ov-stat h3 {     font-family: 'Gilda Display', serif; font-size: 52px; font-weight: 600; color: var(--gold); line-height: 1; }
.overview .ov-stat p { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.overview .ov-mosaic { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 180px 190px; gap: 10px; }
.overview .ov-mosaic .om-img { overflow: hidden; position: relative; }
.overview .ov-mosaic .om-img:first-child { grid-row: 1 / 3; }
.overview .ov-mosaic .om-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.overview .ov-mosaic .om-img:hover img { transform: scale(1.07); }
.overview-title-text { display: flex; align-items: center; justify-content: center; flex-direction: column;  text-align: center;}
.overview-title-text h4 { font-family: 'Gilda Display', serif; font-size: 30px; font-size: 30px; font-weight: 500;}
 .overview .ov-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.3s, gap 0.3s; }
.overview .ov-link:hover { color: var(--gold); gap: 14px; }
.overview .ov-link::after { content: '→'; font-size: 14px; }
  /* ══════════ ROOMS ══════════ */
  .rooms { padding: 60px 0 ; background: var(--ivory); position: relative; overflow: hidden; }

  .rooms::before { content: ''; position: absolute; inset: 0;  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; }

 

  .rooms .container { margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }

  /* ── Header ── */
  .rooms .rooms-header { text-align: center; margin-bottom: 40px; opacity: 0; animation: headerReveal 0.8s var(--ease-out) 0.05s forwards; }
  .rooms .rooms-header::after { content: ''; display: block; width: 52px; height: 1px; background: var(--gold); margin: 26px auto 0; }
  .rooms .rooms-header .sec-tag {  font-size: 10px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; display: block; }
  .rooms .rooms-header .sec-title {     font-family: 'Gilda Display', serif; font-size: clamp(38px, 4.5vw, 54px); font-weight: 400; color: var(--charcoal); line-height: 1.1; letter-spacing: -0.5px; }
  .rooms .rooms-header .sec-title em { font-style: italic; color: var(--gold-dk); }
  .rooms .rooms-header .sec-subtitle {  font-size: 13.5px; font-weight: 300; color: var(--muted); letter-spacing: 0.3px;  line-height: 1.7; }

  /* ── Grid ── */
  .rooms .room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .rooms .room-grid-inside { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

  /* ── Card ── */
  .rooms .rc { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--cream-dk); opacity: 0; transform: translateY(22px); animation: cardReveal 0.7s var(--ease-out) forwards; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s; }
  .rooms .rc:nth-child(1) { animation-delay: 0.15s; }
  .rooms .rc:nth-child(2) { animation-delay: 0.28s; }
  .rooms .rc:nth-child(3) { animation-delay: 0.42s; }
  .rooms .rc:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(13,11,8,0.10), 0 6px 18px rgba(196,151,58,0.07); border-color: rgba(196,151,58,0.28); }
  .rooms .rc::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 0; border-style: solid; border-width: 34px 34px 0 0; border-color: var(--gold) transparent transparent transparent; z-index: 3; opacity: 0; transition: opacity 0.35s var(--ease); }
  .rooms .rc:hover::before { opacity: 1; }

  /* ── Image ── */
  .rooms .rc .rc-img { position: relative; overflow: hidden; height: 255px; }
  .rooms .rc .rc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
  .rooms .rc:hover .rc-img img { transform: scale(1.06); }
  .rooms .rc .rc-img .rc-badge { position: absolute; top: 16px; right: 16px; background: rgba(13,11,8,0.70); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--gold-lt);  font-size: 8.5px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; padding: 5px 11px; z-index: 2; border: 1px solid rgba(196,151,58,0.22); }

  /* ── Arrow (image overlay) ── */
  .rooms .rc .rc-img .rc-arrow { position: absolute; bottom: 16px; right: 16px; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.22); background: rgba(13,11,8,0.42); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: var(--ivory); font-size: 11px; z-index: 2; transition: background 0.35s var(--ease), border-color 0.35s, transform 0.35s var(--ease); cursor: pointer; }
  .rooms .rc:hover .rc-img .rc-arrow { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: rotate(-45deg); }

  /* ── Body ── */
  .rooms .rc .rc-body { padding: 24px 24px 22px; }
  .rooms .rc .rc-body .rc-name { font-family: 'Barlow', serif; font-size: 24px; font-weight: 500; color: var(--charcoal); line-height: 1.15; margin-bottom: 8px; letter-spacing: -0.2px; }
  .rooms .rc .rc-body .rc-rule { width: 30px; height: 1px; background: var(--gold); margin-bottom: 12px; transition: width 0.4s var(--ease); }
  .rooms .rc:hover .rc-body .rc-rule { width: 52px; }
  .rooms .rc .rc-body .rc-desc {   font-weight: 300; color: var(--muted);  margin-bottom: 18px;font-size: 14px; }

  /* ── Price ── */
  .rooms .rc .rc-body .rc-price { display: flex; align-items: baseline; gap: 5px; padding: 12px 0; border-top: 1px solid var(--cream-dk); border-bottom: 1px solid var(--cream-dk); margin-bottom: 18px; }
  .rooms .rc .rc-body .rc-price .rc-price-from {  font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
  .rooms .rc .rc-body .rc-price .rc-price-amount {     font-family: 'Gilda Display', serif; font-size: 28px; font-weight: 500; color: var(--charcoal); letter-spacing: -0.5px; line-height: 1; }
  .rooms .rc .rc-body .rc-price .rc-price-night {  font-size: 10px; font-weight: 300; color: var(--muted); letter-spacing: 0.4px; }
/* ── Features list ── */
.rooms .rc .rc-body .rc-features { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.rooms .rc .rc-body .rc-features li {  font-size: 13px; font-weight: 300; color: var(--muted); padding-left: 14px; position: relative; line-height: 1.55; }
.rooms .rc .rc-body .rc-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── Addon items only ── */
.rooms .rc .rc-body .rc-features .rc-addon { font-size: 12px; background: rgba(196,151,58,0.07); border-left: 2px solid var(--gold); border-radius: 0 3px 3px 0; padding: 5px 10px 5px 10px; color: var(--charcoal); }
.rooms .rc .rc-body .rc-features .rc-addon::before { display: none; }
.rooms .rc .rc-body .rc-features .rc-addon strong { font-weight: 500; color: var(--charcoal); }
.rooms .rc .rc-body .rc-features .rc-addon-green{font-size:12px;background:rgba(25,135,84,.08);border-left:2px solid #198754;border-radius:0 3px 3px 0;padding:5px 10px;color:#146c43;list-style:none;}
.rooms .rc .rc-body .rc-features .rc-addon-green::before{display:none;}
.rooms .rc .rc-body .rc-features .rc-addon-green strong{font-weight:600;color:#146c43;}


/* ── Promo ribbon on image ── */
/* ── Promo starburst badge ── */
.rooms .rc .rc-img .rc-promo-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 88px; height: 88px;
  background: #d42020;
  clip-path: polygon(
    50% 0%,  57% 13%, 69% 4%,  71% 18%, 85% 15%,
    82% 29%, 96% 31%, 87% 43%, 100% 50%, 87% 57%,
    96% 69%, 82% 71%, 85% 85%, 71% 82%, 69% 96%,
    57% 87%, 50% 100%, 43% 87%, 31% 96%, 29% 82%,
    15% 85%, 18% 71%, 4%  69%, 13% 57%, 0%  50%,
    13% 43%, 4%  31%, 18% 29%, 15% 15%, 29% 18%,
    31% 4%,  43% 13%
  );
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  transform: rotate(-12deg);
  animation: badgePulse 2.2s ease-in-out infinite;
  box-shadow: 0 4px 18px rgba(212,32,32,0.45);
}

.rooms .rc .rc-img .rc-promo-badge .rc-promo-top  {  font-size: 8.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #ffe066; line-height: 1.2; }
.rooms .rc .rc-img .rc-promo-badge .rc-promo-main {     font-family: 'Gilda Display', serif; font-size: 18px; font-weight: 700; color: #fff; line-height: 1.1; display: block; }
.rooms .rc .rc-img .rc-promo-badge .rc-promo-sub  {  font-size: 8px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: #ffe066; line-height: 1.3; }

/* ── Badge pulse animation ── */
@keyframes badgePulse {
  0%, 100% { transform: rotate(-12deg) scale(1); box-shadow: 0 4px 18px rgba(212,32,32,0.45); }
  50%       { transform: rotate(-12deg) scale(1.10); box-shadow: 0 6px 26px rgba(212,32,32,0.65); }
}
  /* ── Buttons ── */
  .rooms .rc .rc-body .rc-actions { display: flex; gap: 10px; align-items: center;    justify-content: space-between; }

  .rooms .rc .rc-body .rc-actions .btn-outline {padding: 9px 0;  background: transparent;  font-size: 9.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--warm); cursor: pointer; text-align: center; transition: background 0.32s var(--ease), color 0.32s, letter-spacing 0.32s; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 7px; }
  .rooms .rc .rc-body .rc-actions .btn-outline:hover {  color: var(--gold-dk); letter-spacing: 2.4px; }

  .rooms .rc .rc-body .rc-actions .btn-fill { padding: 9px 12px; border: 1px solid var(--gold-dk); background: var(--warm);  font-size: 9.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); cursor: pointer; text-align: center; transition: background 0.32s var(--ease), border-color 0.32s, color 0.32s, letter-spacing 0.32s; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 7px; }
  .rooms .rc .rc-body .rc-actions .btn-fill:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); letter-spacing: 2.4px; }

  .rooms .rc .rc-body .rc-actions .btn-icon { font-size: 9px; transition: transform 0.3s var(--ease); }
  .rooms .rc .rc-body .rc-actions .btn-outline:hover .btn-icon,
  .rooms .rc .rc-body .rc-actions .btn-fill:hover .btn-icon { transform: translateX(3px); }

  /* ── Animations ── */
  @keyframes cardReveal { to { opacity: 1; transform: translateY(0); } }
  @keyframes headerReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 992px) {
    .rooms .room-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .rooms .container { padding: 0 12px; }
  }


  /*-------- Amenities----------- */

.amenities { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin:40px 0;padding: 0 40px; }
.amenities .am-pill { position:relative; display:flex; align-items:center; gap:12px; padding:12px 18px; background:rgba(255,255,255,0.03); backdrop-filter:blur(10px); border:1px solid rgba(196,151,58,0.18); overflow:hidden; cursor:pointer; transition:0.45s ease; }
.amenities .am-pill::before { content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(196,151,58,0.18), transparent 60%); opacity:0; transition:0.45s ease; }
.amenities .am-pill:hover::before { opacity:1; }
.amenities .am-pill:hover { transform:translateY(-5px); border-color:rgba(196,151,58,0.65); box-shadow:0 10px 25px rgba(0,0,0,0.18), 0 0 18px rgba(196,151,58,0.18); }
.amenities .am-icon { width:34px; height:34px; min-width:34px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(196,151,58,0.12); border:1px solid rgba(196,151,58,0.2); transition:0.4s ease; }
.amenities .am-pill i { font-size:13px; color:var(--gold); transition:0.4s ease; }
.amenities .am-pill span:last-child { font-size:11px; letter-spacing:1.2px; text-transform:uppercase; color:var(--warm); font-weight:500; transition:0.4s ease; }
.amenities .am-pill:hover .am-icon { background:var(--gold); transform:rotate(8deg) scale(1.08); }
.amenities .am-pill:hover i { color:var(--dark); }
.amenities .am-pill:hover span:last-child { color:var(--gold);}

@media(max-width:991px){
.amenities { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:576px){
.amenities { grid-template-columns:1fr 1fr; gap:10px;padding: 0; }
.amenities .am-pill { padding:10px 10px; gap:10px; }
.amenities .am-icon { width:30px; height:30px; min-width:30px; }
.amenities .am-pill span:last-child { font-size:10px; letter-spacing:1px; }
}

  /*-------- Amenities----------- */

/* ── DINING SPLIT SECTIONS ── */
.dining-split { padding: 60px 80px; background: #1c1814; }
.dining-split--alt { background: #221e19; }

.dining-split .ds-inner { display: grid; grid-template-columns: 1fr 1fr;  border: 1px solid rgba(196,151,58,0.08); overflow: hidden; border-radius: 30px;}

.dining-split .ds-img-col { position: relative; overflow: hidden; }
.dining-split .ds-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.9s var(--ease); }
.dining-split .ds-inner:hover .ds-bg { transform: scale(1.06); }

.dining-split .ds-text-col { display: flex; flex-direction: column; justify-content: center; padding: 40px 50px; background: #181410; position: relative; }
.dining-split--alt .ds-text-col { background: #1e1a15; }

.dining-split .ds-text-col::before { content: ''; position: absolute; top: 40px; bottom: 40px; width: 1px; background: rgba(196,151,58,0.12); }
.dining-split .ds-left-img .ds-text-col::before { left: 0; }
.dining-split .ds-right-img .ds-text-col::before { right: 0; }

.dining-split .ds-icon img { width: 30%; margin-bottom: 20px; }

.dining-split .ds-name {     font-family: 'Gilda Display', serif; font-size: 30px; font-weight: 300; color: var(--ivory); line-height: 1; margin-bottom: 14px; }

.dining-split .ds-sub {font-family: 'Barlow', sans-serif !important; font-size: 18px; font-weight: 300; color: rgba(250,246,239,0.5); line-height: 1.5; margin-bottom: 16px; }

.dining-split .ds-desc { font-size: 14px; font-weight: 300; line-height: 1.9; color: rgba(250,246,239,0.38); margin-bottom: 36px; max-width: 400px; }

.dining-split .ds-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.dining-split .ds-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; padding: 14px 28px; transition: all 0.35s var(--ease); }

.dining-split .ds-btn-primary { background: var(--gold); color: var(--dark); }
.dining-split .ds-btn-primary:hover { background: var(--gold-lt); gap: 16px; }

.dining-split .ds-btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(196,151,58,0.4); }
.dining-split .ds-btn-outline:hover { border-color: var(--gold); background: var(--gold-glow); gap: 16px; }

.dining-split .ds-btn i { transition: transform 0.3s var(--ease); }
.dining-split .ds-btn:hover i { transform: translateX(4px); }

.dining-split-gap { height: 32px; background: #141210; }

@media (max-width: 991px) {
    .dining-split { padding: 40px 12px; }
    .dining-split .ds-inner { grid-template-columns: 1fr; }
    .dining-split .ds-right-img { display: flex; flex-direction: column-reverse; }
    .dining-split .ds-img-col { min-height: 280px; position: relative; }
    .dining-split .ds-text-col { padding: 40px 12px; }
    .dining-split .ds-text-col::before { display: none; }
    .dining-split .ds-btn{padding: 14px 15px; font-size: 12px;}
    .dining-split .ds-name { font-size: 34px; }
    .dining-split-gap { height: 20px; } 
    .sur-list .sur-item-btn{font-size: 12px;}
    footer { margin-bottom: 50px; }
}

/* ── LIGHTBOX ── */
.lightbox-overlay { position: fixed; inset: 0; z-index: 99990; background: rgba(5,4,3,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); backdrop-filter: blur(12px); }
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-inner img { max-width: 88vw; max-height: 78vh; object-fit: contain; display: block; box-shadow: 0 40px 100px rgba(0,0,0,0.7); }
.lightbox-caption { margin-top: 18px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.lightbox-close { position: absolute; top: -50px; right: 0; width: 40px; height: 40px; border: 1px solid rgba(196,151,58,0.4); background: transparent; color: var(--gold); font-size: 16px; display: flex; align-items: center; justify-content: center;  transition: all 0.3s; }
.lightbox-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid rgba(196,151,58,0.3); background: rgba(10,8,5,0.7); color: var(--gold); font-size: 14px; display: flex; align-items: center; justify-content: center;  transition: all 0.3s; backdrop-filter: blur(8px); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lightbox-counter { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.lightbox-dots { display: flex; gap: 8px; margin-top: 20px; }
.lightbox-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s;  }
.lightbox-dots span.active { background: var(--gold); transform: scale(1.4); }

  
/* ── SURROUNDINGS ── */
.surroundings { padding: 60px 0; background: var(--charcoal); }
.surroundings .sur-layout { display: grid; grid-template-columns: 1fr 0.75fr; gap: 80px; margin-top: 60px; align-items: start; }
.surroundings .sur-list { display: flex; flex-direction: column; }
.surroundings .sur-item { display: flex; align-items: center; gap: 26px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: padding-left 0.35s var(--ease);  }
.surroundings .sur-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.surroundings .sur-item:hover { padding-left: 10px; }
.surroundings .sur-num {     font-family: 'Gilda Display', serif; font-size: 50px; font-weight: 600; color: rgba(196,151,58,0.12); min-width: 56px; line-height: 1; transition: color 0.3s; }
.surroundings .sur-item:hover .sur-num { color: rgba(196,151,58,0.35); }
.surroundings .sur-info h4 { font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 400; color: var(--ivory); margin-bottom: 5px; }
.surroundings .sur-info p {  font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.65; }
.surroundings .sur-dist { margin-left: auto; font-size: 16px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); white-space: nowrap; padding: 6px 14px; border: 1px solid rgba(196,151,58,0.2); }
.surroundings .sur-map { position: relative; }
.surroundings .sur-map img { width: 100%; height: 630px; object-fit: cover; }
.surroundings .sur-map .sur-label { position: absolute; bottom: 0; left: 0; right: 0; background: var(--gold); padding: 18px 28px; }
.surroundings .sur-map .sur-label p { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); font-weight: 600; margin: 0; }
.sur-list .sur-item-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    transition: all 0.35s var(--ease);
        margin-left: 85px;
}

.sur-list .sur-item-btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.sur-list .sur-item-btn-primary:hover {
    background: var(--gold-lt);
    gap: 16px;
}

/* ── FOOTER ── */

footer { position: relative; background: #000; overflow: hidden; }
footer::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; }
footer::after { content: ''; position: absolute; bottom: -120px; left: -80px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(196,151,58,0.07) 0%, transparent 68%); pointer-events: none; z-index: 0; }

.ft-inner { position: relative; z-index: 1; max-width: 1380px; margin: 0 auto; padding: 0 56px; }
 

/* ═══════════════════════════════════════════
   BODY GRID
═══════════════════════════════════════════ */
.ft-body { display: grid; grid-template-columns: 1.65fr 1fr 1fr 1.5fr ; gap: 40px; padding: 64px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ── BRAND ── */
.ft-brand { padding-right: 12px; }
.fb-logo-wrap { margin-bottom: 6px; }
.fb-logo-wrap svg { width: 180px; height: auto; display: block; }
.fb-sub { font-size: 8.5px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 300; }
.fb-ornament { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.fb-ornament span { height: 1px; flex: 1; background: rgba(196,151,58,0.2); }
.fb-ornament i { color: var(--gold); font-size: 8px; opacity: 0.6; }
.ft-brand p { font-size: 14px; font-weight: 300; line-height: 2; color: #fff;  }
.fb-social { display: flex; gap: 8px; margin-top: 30px; }
.fb-social a { width: 34px; height: 34px; border: 1px solid rgba(196,151,58,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); font-size: 11px; position: relative; overflow: hidden; transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
.fb-social a::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateY(100%); transition: transform 0.3s var(--ease); }
.fb-social a i { position: relative; z-index: 1; }
.fb-social a:hover { border-color: var(--gold); color: var(--dark); }
.fb-social a:hover::before { transform: translateY(0); }

/* ── SHARED COLUMN ── */
.ft-col h6, .ft-locate h6 {    font-weight: 500; display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: 22px; font-weight: 400; line-height: 1.25; margin-bottom: 25px; position: relative; padding-bottom: 12px; font-family: 'Gilda Display', serif; }
.ft-col h6::after, .ft-locate h6::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(196,151,58,0.3) 0%, transparent 100%); }
.ft-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.ft-col ul li a {font-family: 'Tenor Sans', sans-serif !important; display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.75); text-decoration: none; position: relative; padding-left: 18px; transition: 0.3s ease;    margin-bottom: 14px; }
.ft-col ul li a .ft-arrow { width: 18px; height: 1px; background: rgba(196,151,58,0.25); transition: width 0.28s var(--ease), background 0.28s; flex-shrink: 0; }
.ft-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
.ft-col ul li a:hover .ft-arrow { width: 26px; background: var(--gold); }

/* ── LOCATE ── */
.fn-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fn-contact li { display: flex; align-items: flex-start; gap: 13px; font-size: 14px; font-weight: 300; color: #fff; line-height: 1.65; }
.fn-contact li .fn-icon { width: 26px; height: 26px; border: 1px solid rgba(196,151,58,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fn-contact li .fn-icon i { color: var(--gold); font-size: 10px; }
.fn-contact li strong { color: rgba(255,255,255,0.58); font-weight: 400; display: block; font-size: 16px; margin-bottom: 2px; }

/* ── PAYMENT ── */
.fn-payment { margin-top: 28px; }
.fn-payment-label { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.fn-payment-label::before { content: ''; width: 18px; height: 1px; background: rgba(255,255,255,0.07); }
.fn-payment-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.fn-payment-img-wrap { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); padding: 12px 14px; display: inline-flex; align-items: center; width: 100%;}
.fn-payment-img-wrap img {  max-width: 100%; opacity: 0.8; filter: grayscale(15%); transition: opacity 0.35s; display: block; }
.fn-payment-img-wrap:hover img { opacity: 0.9; }

/* ═══════════════════════════════════════════
   FOOT BAR
═══════════════════════════════════════════ */
.ft-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 22px 0; }
.ff-links { display: flex; flex-wrap: wrap; align-items: center; }
.ff-links a {   padding: 4px 14px; border-right: 1px solid rgba(255,255,255,0.07); color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: 0.3s ease; position: relative; }
.ff-links a:first-child { padding-left: 0; }
.ff-links a:last-child { border-right: none; }
.ff-links a:hover { color: var(--gold); }
.ff-copy { font-weight: 300; color: rgb(255, 255, 255); }
.ff-copy a { color: rgba(196,151,58,0.5); transition: color 0.3s; }
.ff-copy a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1280px) { .ft-inner { padding: 0 40px; } .ft-cta { padding: 36px 40px; } .ft-body { gap: 36px; } .ft-cta-left h3 { font-size: 24px; } }

@media (max-width: 1024px) { .ft-inner { padding: 0 32px; } .ft-cta { padding: 32px; gap: 24px; } .ft-body { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 40px 48px; padding: 52px 0 48px; } .ft-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; column-gap: 48px; padding-right: 0; } .fb-logo-wrap { grid-column: 1; grid-row: 1; } .fb-sub { grid-column: 1; grid-row: 2; } .fb-ornament { display: none; } .ft-brand p { grid-column: 2; grid-row: 1 / 4; align-self: center; max-width: 420px; } .fb-social { grid-column: 1; grid-row: 3; margin-top: 12px; } .ft-locate { grid-column: 1 / -1; } .ft-locate .fn-contact { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px 32px; } .fn-payment { margin-top: 22px; } }

@media (max-width: 768px) { .ft-inner { padding: 0 24px; } .fb-logo-wrap {  display: flex; justify-content: center; } .ft-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; } .ft-cta-left h3 { font-size: 22px; } .ft-cta-left p { font-size: 10.5px; letter-spacing: 2px; } .ft-cta-btn { width: 100%; justify-content: center; padding: 14px 24px; } .ft-body { grid-template-columns: 1fr 1fr; gap: 36px 32px; padding: 44px 0 40px; } .ft-brand { grid-column: 1 / -1; display: block; } .ft-brand p { max-width: 100%; } .fb-ornament { display: flex; } .ft-locate { grid-column: 1 / -1; } .ft-locate .fn-contact { grid-template-columns: 1fr 1fr; gap: 16px 24px; } .ft-foot { flex-direction: column; align-items: flex-start; gap: 12px; } .ff-links a { padding: 4px 10px; font-size: 10.5px; } }

@media (max-width: 480px) { .ft-inner { padding: 0 20px; } .ft-cta { padding: 24px 20px; } .ft-cta-left h3 { font-size: 20px; } .ft-body { grid-template-columns: 1fr; gap: 36px; padding: 40px 0 36px; } .ft-brand { text-align: center; } .fb-logo-wrap svg { margin: 0 auto; } .fb-ornament { justify-content: center; } .ft-brand p { max-width: 100%; margin: 0 auto; } .fb-social { justify-content: center; } .ft-locate .fn-contact { grid-template-columns: 1fr; gap: 14px; } .fn-payment-img-wrap { width: 100%; } .fn-payment-img-wrap img { width: 100%; } .ft-foot { align-items: center; text-align: center; } .ff-links { justify-content: center; gap: 0; } .ff-links a { padding: 5px 10px; font-size: 16px; } .ff-copy { text-align: center; } }

@media (max-width: 360px) { .ft-cta-left h3 { font-size: 18px; } .ft-cta-btn { font-size: 9px; letter-spacing: 2px; padding: 13px 18px; } .ff-links a { border-right: none; padding: 4px 8px; } .ff-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 100%; } .ff-links a { text-align: center; } }



/* ── MOBILE MENU ── */
.main-nav .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 110px; left: 0; right: 0; background: rgba(10,8,5,0.99); padding: 8px 0 20px; border-top: 1px solid rgba(196,151,58,0.12); z-index: 100; max-height: calc(100vh - 74px); overflow-y: auto; align-items: start; }
header.scrolled .nav-menu.open{top: 90px;}
.main-nav .nav-menu.open .nav-link::after { display: none; }
.main-nav .nav-menu.open .nav-item { width: 100%; }
.main-nav .nav-menu.open .nav-item > .nav-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 11px; color: rgba(255,255,255,0.7); }
.main-nav .nav-menu.open .nav-item > .nav-link:hover { color: var(--gold-lt); background: rgba(196,151,58,0.05); }
.main-nav .nav-menu.open .has-dropdown > .nav-link .dd-arrow { transition: transform 0.3s var(--ease); font-size: 10px; opacity: 1; color: var(--gold); }
.main-nav .nav-menu.open .has-dropdown.dd-open > .nav-link .dd-arrow { transform: rotate(180deg); }
.main-nav .nav-menu.open .custom-dropdown { position: static !important; transform: none !important; opacity: 1 !important; pointer-events: all !important; border: none !important; border-left: 2px solid rgba(196,151,58,0.25) !important; border-top: none !important; margin: 0 0 4px 20px !important; padding: 4px 0 !important; box-shadow: none !important; background: rgba(196,151,58,0.04) !important; max-height: 0; overflow: hidden; display: none !important; }
.main-nav .nav-menu.open .custom-dropdown::before { display: none !important; }
.main-nav .nav-menu.open .has-dropdown.dd-open > .custom-dropdown { max-height: max-content; padding: 6px 0 !important; display: block !important; }
.main-nav .nav-menu.open .custom-dropdown .dd-item { padding: 11px 20px; font-size: 10px; color: rgba(255,255,255,0.5); border-left: none; gap: 12px; }
.main-nav .nav-menu.open .custom-dropdown .dd-item:hover { background: rgba(196,151,58,0.08); color: var(--gold-lt); padding-left: 24px; }

/* ── GSAP INITIAL STATES ── */
.anim-up { opacity: 0; transform: translateY(45px); }
.anim-left { opacity: 0; transform: translateX(-55px); }
.anim-right { opacity: 0; transform: translateX(55px); }
.anim-scale { opacity: 0; transform: scale(0.9); }
.anim-fade { opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .overview .ov-text { padding-right: 32px; }
  footer .ft-body { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials .tst-badge-row { flex-wrap: wrap; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-line { display: none; }
}
@media (max-width: 992px) {
  .main-nav .nav-wrap { padding: 0 12px; }
  .main-nav .nav-menu { display: none; }
  .main-nav .nav-toggle { display: flex; }
  .main-nav .nav-book { display: none; }
  .hero-content { padding: 0 6%; }
  .dining .dining-panels { grid-template-columns: 1fr; min-height: auto; }
  .surroundings .sur-layout { grid-template-columns: 1fr;margin-top: 0px; }
  .stories .st-grid { grid-template-columns: 1fr 1fr; }
  .events .ev-grid { grid-template-columns: 1fr 1fr; }
  .testimonials .tst-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials .tst-badge-row { flex-wrap: wrap; }
  .bm-form-grid { grid-template-columns: 1fr; }
  .bm-form-group.full { grid-column: 1; }
  .bm-header { padding: 28px 24px 22px; }
  .bm-body { padding: 28px 24px 36px; }
}
@media (max-width: 768px) {
  .top-bar .tb-wrap { padding: 0 20px; }
  .top-bar .tb-item:not(:first-child) { display: none; }
  .top-bar .tb-sep { display: none; }
  .overview .ov-mosaic { display: none; height: 300px; }
  .overview .ov-mosaic .om-img:not(:first-child) { display: none; }
  .overview .ov-mosaic .om-img:first-child { height: 300px; grid-row: auto; display: none; }
  .rooms .room-grid { grid-template-columns: 1fr; }
  .gallery .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery .gi { grid-column: auto !important; height: 190px; }
  .events .ev-grid { grid-template-columns: 1fr; }
  .stories .st-grid { grid-template-columns: 1fr; }
  footer .ft-body { grid-template-columns: 1fr; gap: 36px; }
  footer .ft-foot { flex-direction: column; gap: 12px; text-align: center; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .success-modal { padding: 40px 28px; }
  .hero-awards { display: none; }
  .testimonials .tst-badge-row { flex-direction: column; border: none; }
  .testimonials .tst-badge-item { border-right: none; border-bottom: 1px solid rgba(196,151,58,0.12); }
  .main-nav .nav-menu.open .custom-dropdown{margin-left:0 !important;}
} 



.Karnataka-tourisam {
    position: absolute;
    z-index: 99;
    bottom: 15%;
    left: 50%;
    
}
.Karnataka-tourisam img{
width: 220px;
}
.premium-call{
    position:fixed;
    left:0;
    top:65%;
    transform:translateY(-50%);
    z-index:9999;
}

 

.premium-call .premium-call-link{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 12px;  
    transition:0.4s ease;
    overflow:hidden;
    position:relative;
    flex-direction: column-reverse;
     background:transparent !important;
    box-shadow:none;
    border:none;
}

 

 

.premium-call .call-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4af37,#f8e28a,#c59b1d);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:20px;
    box-shadow:0 5px 18px rgba(212,175,55,0.4);
    animation:ring 2s infinite;
}

.premium-call .vertical-number{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    color:#fff;
    font-size:10px;
    letter-spacing:3px;
    /* font-weight:600; */
    font-family:Arial,sans-serif;
    text-transform:uppercase;
    
}


.premium-call .vertical-number{
    color:#000;
    transition:0.3s ease;
}

/* When inside dark sections */
.premium-call.white-text .vertical-number{
    color:#fff;
}

@keyframes ring{
    0%{transform:rotate(0deg);}
    10%{transform:rotate(12deg);}
    20%{transform:rotate(-10deg);}
    30%{transform:rotate(8deg);}
    40%{transform:rotate(-6deg);}
    50%{transform:rotate(0deg);}
    100%{transform:rotate(0deg);}
}

@media(max-width:768px){

    .premium-call .premium-call-link{
        padding:14px 8px;
        border-radius:0 18px 18px 0;
    }

    .premium-call .call-icon{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:16px;
    }

    .premium-call .vertical-number{
        font-size:11px;
        letter-spacing:2px;
    }
}


/* ── HERO ── */
.ov-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; }
/* .ov-hero__bg { position: absolute; inset: 0; background: url('../Images/Overview/Overview-reception.webp') center/cover no-repeat; transform: scale(1.05); transition: transform 8s var(--ease); } */
.ov-hero__bg { position: absolute; inset: 0; background: #000; transform: scale(1.05); transition: transform 8s var(--ease); }
.ov-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(170deg, rgba(13,11,8,0.18) 0%, rgba(13,11,8,0.75) 100%); }
.ov-hero:hover .ov-hero__bg { transform: scale(1); }
.ov-hero__content { position: relative; z-index: 2; padding: 0 0 2.5rem; width: 100%; }
.ov-hero__eyebrow {  font-weight: 300; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.85rem; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.2s forwards; }
.ov-hero__eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
.ov-hero__title {     font-family: 'Gilda Display', serif; font-weight: 300; font-size: 30px; line-height: 0.92; color: var(--white); opacity: 0; animation: fadeUp 1s var(--ease-out) 0.35s forwards; gap: 0.75rem;  }
.ov-hero__title em { font-style: italic; color: var(--gold-lt); display: block; }
.ov-hero__subtitle {  font-weight: 300; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,246,239,0.55); margin-top: 1.25rem; opacity: 0; animation: fadeUp 1s var(--ease-out) 0.55s forwards;    }
.ov-hero__badge { position: absolute; top: 1.75rem; right: 1.75rem; width: 5.25rem; height: 5.25rem; border-radius: 50%; border: 1px solid rgba(196,151,58,0.35); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gold-lt); text-align: center;     font-family: 'Gilda Display', serif; z-index: 3; opacity: 0; animation: fadeIn 1s var(--ease-out) 0.9s forwards; backdrop-filter: blur(6px); background: rgba(13,11,8,0.3); }
.ov-hero__badge-num { font-size: 1.6rem; font-weight: 600; line-height: 1; }
.ov-hero__badge-txt {  font-size: 0.47rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 0.1rem; }

 

/* ── DIVIDER ── */
.gold-divider { display: flex; align-items: center; gap: 0.75rem; }
.gold-divider::before, .gold-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.gold-divider span {     font-family: 'Gilda Display', serif; font-size: 1rem; color: var(--gold); font-style: italic; }

/* ── SECTION BASE ── */
.section { padding: 4rem 0; }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--ivory { background: var(--ivory); }
.section--cream { background: var(--cream); }
.label-tag {  font-weight: 300; font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.heading-serif {     font-family: 'Gilda Display', serif; font-size: 2rem; line-height: 1.18; color: var(--ink); margin-bottom: 1.2rem; font-weight: 400; }
.section--dark .heading-serif { color: var(--ivory); }
.heading-serif em { font-style: italic; color: var(--gold); }
.body-text {  font-weight: 300;  line-height: 1.88; color: var(--warm); }
.section--dark .body-text { color: rgba(250,246,239,0.65); }

/* ── INTRO SPLIT ── */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.intro-split__img { position: relative; overflow: hidden; min-height: 420px; }
.intro-split__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.intro-split__img:hover img { transform: scale(1.04); }
.intro-split__img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(196,151,58,0.1) 0%, transparent 55%); }
.intro-split__text { background: var(--charcoal); padding: 3.25rem 5% 3.25rem 5.5%; display: flex; flex-direction: column; justify-content: center; }
.intro-split__quote {     font-family: 'Gilda Display', serif; font-style: italic; font-size: clamp(1.25rem, 2.5vw, 1.9rem); line-height: 1.4; color: var(--gold-lt); margin-bottom: 1.25rem; position: relative; padding-left: 1.6rem; }
.intro-split__quote::before { content: '\201C'; position: absolute; left: 0; top: -0.2rem; font-size: 2.4rem; color: var(--gold-dk); line-height: 1; }
.intro-split__detail {  font-weight: 300;  line-height: 1.85; color: rgba(250,246,239,0.6); }
.intro-split__line { width: 2rem; height: 1px; background: var(--gold); margin: 1.25rem 0; }

/* ── ROOMS SECTION ── */
.rooms-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.rooms-wrap__text { padding: 3.5rem 4.5% 3.5rem 0; display: flex; flex-direction: column; justify-content: center; }
.rooms-wrap__text h2{
  font-family: 'Gilda Display', serif;
    font-size: 2rem;
    line-height: 1.18;
    color: var(--ink);
    margin-bottom: 1.2rem;
    font-weight: 400;
}
.rooms-wrap__img { position: relative; overflow: hidden; min-height: 420px; }
.rooms-wrap__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.rooms-wrap__img:hover img { transform: scale(1.04); }
.rooms-wrap__img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(250,246,239,0.1) 0%, transparent 35%); z-index: 1; }
.rooms-wrap__caption { position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 2;     font-family: 'Gilda Display', serif; font-style: italic; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.feat-grid { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.feat-grid li {  font-weight: 300; color: var(--warm); display: flex; align-items: center; gap: 0.55rem; }
.feat-grid li::before { content: ''; width: 0.35rem; height: 0.35rem; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── RECEPTION DETAIL ── */
.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.rec-grid__img { position: relative; overflow: hidden; }
.rec-grid__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.rec-grid__img:hover img { transform: scale(1.04); }
.rec-grid__img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1.5rem; background: linear-gradient(to top, rgba(13,11,8,0.65), transparent); }
.rec-grid__img-caption span {     font-family: 'Gilda Display', serif; font-style: italic; font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.tag-pill { display: inline-flex; align-items: center; gap: 0.45rem; background: rgba(196,151,58,0.1); border: 1px solid rgba(196,151,58,0.28); padding: 0.35rem 0.9rem;  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0.2rem; }

/* ── CTA ── */
.cta-band { background: var(--charcoal); padding: 3.5rem 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__text .heading-serif { font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--ivory); }
.cta-band__text .body-text { margin-top: 0.5rem; max-width: 440px; }
.btn-gold { display: inline-flex; align-items: center; gap: 0.65rem; background: var(--gold); color: var(--dark);  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.8rem 2rem; border: none; text-decoration: none; cursor: pointer; transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); white-space: nowrap; }
.btn-gold:hover { background: var(--gold-dk); color: var(--ivory); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(196,151,58,0.3); }
.btn-outline-gold { display: inline-flex; align-items: center; gap: 0.65rem; background: transparent; color: var(--gold);  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.75rem 1.9rem; border: 1px solid rgba(196,151,58,0.55); text-decoration: none; cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap; }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
 .heading-serif {margin-bottom:0 !important;}
  .intro-split, .rooms-wrap, .rec-grid { grid-template-columns: 1fr; }
  .intro-split__detail{margin-bottom:0;}
  .intro-split__img, .rooms-wrap__img { min-height: 52vw; }
  .intro-split__text { padding: 2.75rem 12px; .intro-split__line{display:none;} }
  .rooms-wrap__text { padding: 0; }
  .rooms-wrap { direction: ltr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text .body-text { max-width: 100%; }
  .section--cream .rec-grid > *:first-child{order:2}.section--cream .rec-grid > *:last-child{order:1}
}
@media (max-width: 575.98px) {
  .section { padding: 2.75rem 0; }
  .feat-grid {grid-template-columns: 1fr; padding-bottom: 20px; margin-top: 0;}
  .ov-hero { min-height: 50vh; }
}


/* ── HERO ── */
/* .room-hero.deluxe-room-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background-image: url('../Images/Deluxe-room/night-view.webp'); background-size: cover; background-position: center; }
.room-hero.premium-room-hero{ position: relative; height: 100vh; min-height: 600px; overflow: hidden; background-image: url('../Images/Premium-room/vase-view.webp'); background-size: cover; background-position: center; }
.room-hero.suite-room-hero{ position: relative; height: 100vh; min-height: 600px; overflow: hidden; background-image: url('../Images/Suite-room/Suite-room-corner-view.webp'); background-size: cover; background-position: center; } */

.room-hero.deluxe-room-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background-image: url('../Images/smart-room/Smart-room-banner.webp'); background-size: cover; background-position: center; }
.room-hero.premium-room-hero{ position: relative; height: 100vh; min-height: 600px; overflow: hidden; background-image: url('../Images/Comfort-room/Comfort-room-banner.webp'); background-size: cover; background-position: center; }
.room-hero.suite-room-hero{ position: relative; height: 100vh; min-height: 600px; overflow: hidden; background-image: url('../Images/Excutive-room/Executive-room-banner.webp'); background-size: cover; background-position: center; }



.room-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,11,8,0.82) 0%, rgba(13,11,8,0.28) 55%, rgba(13,11,8,0.10) 100%); }
.room-hero .hero-badge { display: inline-flex; align-items: center; gap: 8px;  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt); border: 1px solid rgba(196,151,58,0.45); padding: 6px 18px; border-radius: 2px; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.3s forwards; }
.room-hero .hero-title {     font-family: 'Gilda Display', serif;     font-size: 60px; font-weight: 300; color: var(--white); line-height: 1.05; letter-spacing: -0.01em; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.55s forwards; }
.room-hero .hero-title em { font-style: italic; color: var(--gold-lt); } 
.room-hero .hero-subtitle {  font-size: 0.88rem; font-weight: 300; letter-spacing: 0.12em; color: rgba(250,246,239,0.72); opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.75s forwards; }
.room-hero .hero-divider { width: 48px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.65s forwards; }
.room-hero .hero-price-pill { display: inline-flex; align-items: baseline; gap: 4px; background: rgba(196,151,58,0.18); border: 1px solid rgba(196,151,58,0.4); backdrop-filter: blur(12px); padding: 10px 22px; border-radius: 2px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.9s forwards; }
.room-hero .hero-price-pill .from {  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-lt); }
.room-hero .hero-price-pill .amt {     font-family: 'Gilda Display', serif; font-size: 1.9rem; font-weight: 600; color: var(--white); line-height: 1; }
.room-hero .hero-price-pill .night {  font-size: 0.75rem; color: rgba(250,246,239,0.65); }
.room-hero .hero-cta { display: inline-flex; align-items: center; gap: 10px;  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 14px 34px; border: none; cursor: pointer; transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); text-decoration: none; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1s forwards; }
.room-hero .hero-cta:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(196,151,58,0.35); color: var(--charcoal); }

/* ── SECTION LABELS ── */
.section-eyebrow {  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; }
.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--gold-glow), transparent); max-width: 80px; }
.section-title {     font-family: 'Gilda Display', serif; font-size: 2rem; font-weight: 300; color: var(--charcoal); line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold-dk); }
.divider-gold { width: 64px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); display: inline-block; }

/* ── ROOM STORY ── */
.room-story { padding: 60px 0; background: var(--ivory); } 
.story-highlight {font-family: 'Gilda Display', serif !important; font-size: 1.4rem; font-weight: 400; font-style: italic; color: var(--charcoal); line-height: 1.5; border-left: 2px solid var(--gold); padding-left: 24px; }
.story-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 280px; gap: 8px; }
.story-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.story-imgs img:hover { transform: scale(1.03); }
.story-imgs .img-main { grid-column: span 2; }
.story-imgs .img-secondary { overflow: hidden; position: relative; }
.story-img-tag { background: var(--charcoal); color: var(--gold-lt);     font-family: 'Gilda Display', serif; font-size: 0.95rem; font-style: italic; padding: 12px 20px; border: 1px solid rgba(196,151,58,0.2); display: inline-block; margin-top: 10px;position: absolute;top: 0; right: 0;}
.room-pricing{display:flex;align-items:start;gap:16px;margin:10px 0 20px;flex-wrap:wrap; flex-direction:column-reverse;}
.price-tag{display:inline-flex;flex-direction:column;}
.price-tag .price-label{font-family:var(--font-b);font-size:.68rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);margin-bottom:2px;}
.price-tag .price-amount{font-family:var(--font-d);font-size:2.3rem;font-weight:600;color:var(--charcoal);line-height:1;}
.price-tag .price-amount .price-cur{font-size:1.2rem;font-weight:300;vertical-align:super;margin-right:2px;}
.price-tag .price-note{font-family:var(--font-b);font-size:.72rem;color:var(--muted);margin-top:3px;font-weight:300;}
.smart-price-excl{font-family:var(--font-b);font-size:.68rem;color:var(--muted);margin-top:2px;font-weight:300;}
.smart-bfast-price{font-family:var(--font-b);font-size:.78rem;color:var(--warm);font-weight:400;margin-top:1px;}
.room-extras{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 28px;}
.extra-pill{font-family:var(--font-b);font-size:.75rem;color:var(--warm);background:rgba(196,151,58,.08);border:1px solid rgba(196,151,58,.25);padding:5px 13px;border-radius:2px;display:inline-flex;align-items:center;gap:6px;}
.extra-pill::before{content:'+';font-size:.85rem;color:var(--gold);font-weight:500;}
.smart-room-col{position:relative;}
.offer-burst{position:absolute;top:-14px;right:-14px;width:120px;height:120px;z-index:10;pointer-events:none;animation:burstPulse 2.8s ease-in-out infinite;}
.offer-burst svg{width:100%;height:100%;overflow:visible;}
.breakfast-free-badge{display:inline-flex;align-items:center;gap:7px;background:#be1b1b;color:#fff7c0;font-family:var(--font-b);font-size:.75rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;padding:5px 14px 5px 10px;border-radius:2px;margin-top:8px;position:relative;overflow:hidden;}
.breakfast-free-badge::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(-45deg,transparent,transparent 6px,rgba(255,255,255,.06) 6px,rgba(255,255,255,.06) 12px);}
.breakfast-free-badge .badge-star{font-size:1rem;color:#ffd700;animation:starSpin 4s linear infinite;}
.breakfast-free-badge .badge-months{font-size:.65rem;opacity:.85;font-weight:300;border-left:1px solid rgba(255,247,192,.35);padding-left:8px;margin-left:2px;}


.room-buttons{display:flex;flex-direction:column;gap:15px;width:100%;}
.room-buttons .book-room-btn{display:flex;align-items:center;justify-content:space-between;width:50%;padding:10px 24px;background:linear-gradient(135deg,var(--gold),var(--gold-dk));color:var(--white);font-family:var(--font-b);font-size:16px;font-weight:600;text-decoration:none;transition:all .4s var(--ease);box-shadow:0 12px 25px var(--gold-glow);}
.room-buttons .book-room-btn i{transition:all .4s var(--ease);}
.room-buttons .book-room-btn:hover{background:linear-gradient(135deg,var(--gold-lt),var(--gold));color:var(--dark);}
.room-buttons .book-room-btn:hover i{transform:translateX(6px);}
.room-buttons .enquiry-btn{display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.3s, gap 0.3s; width: max-content;}
.room-buttons .enquiry-btn i{transition:all .4s var(--ease);}
.room-buttons .enquiry-btn:hover{color:var(--gold-dk);border-bottom-color:var(--gold-dk);}
.room-buttons .enquiry-btn:hover i{transform:translateX(6px);}


/* ── AMENITIES ── */
.amenities-section { padding: 60px 0; background: var(--cream); }
.amenity-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--cream-dk); transition: padding-left 0.3s var(--ease); }
.amenity-item:hover { padding-left: 6px; }
.amenity-item:last-child { border-bottom: none; }
.amenity-dot { width: 32px; height: 32px; background: var(--gold-glow); border: 1px solid rgba(196,151,58,0.3); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--gold-dk); font-size: 0.85rem; flex-shrink: 0; transition: background 0.3s, border-color 0.3s; }
.amenity-item:hover .amenity-dot { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.amenity-name {  font-size: 0.88rem; font-weight: 400; color: var(--warm); } 
.amenity-img-item{overflow:hidden;position:relative;border-radius:28px}
.amenity-img-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s var(--ease)}
.amenity-img-item:hover img{transform:scale(1.04)}
.amenity-img-item:first-child{min-height:440px;padding-bottom:80px}
.amenity-img-item:first-child>img{border-radius:28px;height:440px}
.amenity-img-item:last-child{position:absolute;width:280px;height:220px;right:-50px;bottom:0;z-index:3;border-radius:24px;overflow:hidden;border:8px solid #fff;box-shadow:0 25px 60px rgba(0,0,0,.22)}
.amenity-img-item:last-child::before{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.25),transparent 60%);z-index:1}.amenity-img-item:last-child img{height:100%}
.amenity-img-item:last-child:hover{transform:translateY(-6px);transition:.45s ease}
.amenity-img-item:first-child .amenity-img-caption{position:absolute;left:32px;bottom:110px;z-index:2;background: rgb(0 0 0 / 32%);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.18);padding:18px 24px;border-radius:18px;font-family:var(--font-d);font-size:1.2rem;font-style:italic;color:var(--ivory);max-width:340px;box-shadow:0 10px 30px rgba(0,0,0,.18)}
@media(max-width:991px){.amenity-img-item:first-child{padding-right:0;padding-bottom:0}.amenity-img-item:last-child{position:relative;width:100%;height:260px;margin-top:22px}.amenity-img-item:first-child .amenity-img-caption{bottom:24px;left:24px;} .amenity-img-item:last-child{display: none;}}
/* ── CTA ── */
.cta-section { position: relative; padding: 72px 0; overflow: hidden; }
/* .cta-bg { position: absolute; inset: 0; background-image: url('../Images/CTA.webp'); background-size: cover; background-position: center; } */
.cta-bg { position: absolute; inset: 0; background-image: url('../Images/Updated-images/Half-reception.webp'); background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(13,11,8,0.82); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text-block { flex: 1; min-width: 240px; }
.cta-eyebrow {  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.cta-title {     font-family: 'Gilda Display', serif; font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 6px; }
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-sub {  font-size: 0.82rem; font-weight: 300; color: rgba(250,246,239,0.58); letter-spacing: 0.05em; }
.cta-sep { width: 1px; height: 64px; background: rgba(196,151,58,0.25); flex-shrink: 0; }
.cta-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn-book { display: inline-flex; align-items: center; gap: 9px;  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 15px 32px; border: none; cursor: pointer; text-decoration: none; transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); white-space: nowrap; }
.btn-book:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(196,151,58,0.38); color: var(--charcoal); }
.btn-call { display: inline-flex; align-items: center; gap: 9px;  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory); background: transparent; padding: 14px 28px; border: 1px solid rgba(196,151,58,0.45); cursor: pointer; text-decoration: none; transition: all 0.3s var(--ease); white-space: nowrap; }
.btn-call:hover { border-color: var(--gold); color: var(--gold-lt); background: var(--gold-glow); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .room-story { padding: 72px 0; }
  .amenities-section { padding: 72px 0; }
  .story-imgs { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 180px; }
  .amenities-imgs { min-height: 360px; }
  .cta-sep { display: none; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 767.98px) {
  .room-story { padding: 56px 0; }
  .amenities-section { padding: 56px 0; }
  .story-imgs { grid-template-columns: 1fr; grid-template-rows: 240px 180px 180px; }
  .story-imgs .img-main { grid-column: span 1; }
  .amenities-imgs { grid-template-rows: 220px 220px; min-height: unset; }
  .cta-section { padding: 52px 0; }
  .btn-book, .btn-call { width: 100%; justify-content: center; }
  .cta-actions { width: 100%; flex-direction: column; gap: 10px; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 2.4rem; }
  .hero-price-pill { padding: 8px 16px; }
  .hero-cta { padding: 12px 24px; font-size: 0.74rem; }
  .story-imgs { grid-template-rows: 200px 160px 160px; }
}

 

    /* ══ HERO ══ */
    .lantern-hero { padding:60px 0 30px; position:relative; min-height:100vh; display:flex; flex-direction:column; align-items: flex-start; justify-content: end; text-align:center; overflow:hidden; }
    .dinning-lantern .lantern-hero-bg { position:absolute; inset:0; background-image:url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=1600&q=80'); background-size:cover; background-position:center; transform:scale(1.05); animation:bgZoom 10s ease-out forwards; }
    .dinning-aeris .lantern-hero-bg { position:absolute; inset:0; background-image:url('../Images/Aeris-spa/Spa.webp'); background-size:cover; background-position:center; transform:scale(1.05); animation:bgZoom 10s ease-out forwards; }
    .dinning-lantern img{
      width:180px;
    }
    
    @keyframes bgZoom { from{transform:scale(1.05)} to{transform:scale(1)} }
    .lantern-hero-overlay { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(13,11,8,0.45) 0%, rgba(13,11,8,0.65) 50%, rgba(13,11,8,0.85) 100%); }
    .lantern-hero-content { position:relative; z-index:2; padding:2rem 1.5rem; animation:fadeUp 1.2s var(--ease) both; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
    .lh-inn { font-size:0.6rem; font-weight:500; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold-lt); opacity:0.85; margin-bottom:1.8rem; display:flex; align-items:center; justify-content:start; gap:14px; }
    .lh-inn::before, .lh-inn::after { content:''; width:28px; height:1px; background:var(--gold-lt); opacity:0.5; }
    .lh-title {  font-size:60px; font-weight:300; line-height:0.88; color:var(--ivory); letter-spacing:0.01em; margin-bottom:0; display: flex;gap: 10px; }
    .lh-title em { font-style:italic; color:var(--gold-lt); display:block; }
    .lh-bar { font-size: 1rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(250, 246, 239, 0.55); margin: 0.6rem 0 1rem; text-align: justify; }
    .lh-divider { display:flex; align-items:center; justify-content:start; gap:12px; margin-bottom:1.4rem; }
    .lh-divider-line { width:50px; height:1px; background:linear-gradient(90deg,transparent,var(--gold)); }
    .lh-divider-line.r { background:linear-gradient(90deg,var(--gold),transparent); }
    .lh-divider-dot { width:5px; height:5px; background:var(--gold); border-radius:50%; }
    .lh-tagline {  font-size:clamp(1rem,2.5vw,1.35rem);  font-weight:300; color:rgba(250,246,239,0.65); line-height:1.6; text-align: start;  }
    
    /* ══ INTRO ══ */
    .intro { background:var(--cream); padding:6rem 0 5rem; }
    .s-label { font-size:0.6rem; font-weight:600; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); margin-bottom:0.8rem; }
    .s-heading { font-family:var(--font-d); font-size:42px; font-weight:300; line-height:1.15; color:var(--charcoal); margin-bottom:1.4rem; }
    .s-heading em { font-style:italic; color:var(--gold-dk); }
    .s-body { font-size:0.9rem; font-weight:300; line-height:1.9; color:var(--warm); }
    .s-rule { display:flex; align-items:center; gap:14px; margin:1.8rem 0; }
    .s-rule::before, .s-rule::after { content:''; flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(138,100,32,0.35),transparent); }
    .s-rule span { font-size:0.85rem; color:var(--gold); }
    .stat-box { border-left:2px solid var(--gold); padding:0.25rem 0 0.25rem 1.1rem; }
    .stat-box .n { font-family:var(--font-d); font-size:2.5rem; font-weight:300; color:var(--gold); line-height:1; }
    .stat-box .l { font-size:0.6rem; font-weight:500; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); margin-top:3px; }
    .feat-list { display:flex; flex-wrap:wrap; gap:0.4rem; margin-top:1.4rem; }
    .feat-item { font-size:0.73rem; font-weight:400; color:var(--warm); background:var(--ivory); border-bottom:1px solid var(--gold); padding:0.3rem 0.85rem; letter-spacing:0.05em; }
    .card-quote { background:var(--charcoal); padding:2rem 2.2rem; position:relative; border:1px solid rgba(196,151,58,0.1); }
    .card-quote::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
    .card-quote p { font-family: 'Gilda Display', serif !important; font-size:1.15rem; font-style:italic; font-weight:300; color:var(--ivory); line-height:1.8; margin:0; }
    .card-quote span { font-size:0.6rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); display:block; margin-top:1.2rem; }
    .contact-card { margin-top:1.4rem; padding:1.6rem 1.8rem; background:var(--ivory); border:1px solid var(--cream-dk); }
    .contact-card p { font-size:0.85rem; font-weight:300; color:var(--warm); line-height:2; margin:0; }
    .contact-card a { color:var(--gold-dk); text-decoration:none; }
    .contact-card a:hover { color:var(--gold); }
    .btn-gold { display:inline-flex; align-items:center; gap:10px; padding:13px 34px; border:1px solid var(--gold); color:var(--gold); background:transparent; font-size:0.68rem; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; transition:all 0.35s var(--ease); position:relative; overflow:hidden; }
    .btn-gold::before { content:''; position:absolute; inset:0; background:var(--gold); transform:translateX(-101%); transition:transform 0.35s var(--ease); }
    .btn-gold:hover::before { transform:translateX(0); }
    .btn-gold:hover { color:var(--dark); }
    .btn-gold span { position:relative; z-index:1; }
    .btn-dark { display:inline-flex; align-items:center; gap:10px; padding:13px 34px; background:var(--charcoal); color:var(--gold-lt); border:1px solid var(--charcoal); font-size:0.68rem; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; text-decoration:none; transition:all 0.35s var(--ease); position:relative; overflow:hidden; }
    .btn-dark::before { content:''; position:absolute; inset:0; background:var(--warm); transform:translateX(-101%); transition:transform 0.35s var(--ease); }
    .btn-dark:hover::before { transform:translateX(0); }
    .btn-dark:hover { color:var(--ivory); }
    .btn-dark span { position:relative; z-index:1; }

    /* ══ RESPONSIVE ══ */
    @media (max-width:991px) { .intro { padding:4.5rem 0; } }
    @media (max-width:767px) { .lh-title { font-size:clamp(4rem,14vw,6.5rem); } .s-heading { font-size:clamp(1.8rem,7vw,2.5rem); } .d-flex.gap-3 { flex-direction:column; align-items:stretch; } .btn-gold, .btn-dark { justify-content:center; } .feat-list { justify-content:flex-start; } }
    @media (max-width:480px) {  .intro { padding:3.5rem 0; } }
 


     
/* ═══════════════════════════════════════════
   ORNAMENT DIVIDER
═══════════════════════════════════════════ */
.ornament-divider { background: var(--cream); padding: 3rem 0; }
.ornament-divider .ornament-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.ornament-divider .ornament-inner .orn-line { flex: 1; max-width: 200px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-lt)); }
.ornament-divider .ornament-inner .orn-line-r { background: linear-gradient(to left, transparent, var(--gold-lt)); }
.ornament-divider .ornament-inner .orn-diamond { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.4em; }
.ornament-divider .ornament-inner .orn-text {     font-family: 'Gilda Display', serif;  font-style: italic; color: var(--muted); white-space: nowrap; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-section { background: var(--cream); padding: 0 0 6rem; }
.services-section .services-header { text-align: center; padding-bottom: 3.5rem; }
.services-section .services-header .section-eyebrow {  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.9rem; }
.services-section .services-header .section-title {     font-family: 'Gilda Display', serif; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 300; color: var(--charcoal); line-height: 1.2; }
.services-section .services-header .section-title em { color: var(--gold-dk); font-style: italic; }
.services-section .services-header .section-rule { width: 50px; height: 1px; background: linear-gradient(to right, var(--gold-dk), var(--gold-lt)); margin: 1.2rem auto 0; }
.services-section .service-card { background: var(--cream-dk); border-radius: 2px; overflow: hidden; height: 100%; display: flex; flex-direction: column; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); box-shadow: 0 2px 20px rgba(13,11,8,0.06); }
.services-section .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,11,8,0.14); }
.services-section .service-card .card-img-wrap { position: relative; overflow: hidden; height: 250px; }
.services-section .service-card .card-img-wrap .svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); filter: saturate(0.85); }
.services-section .service-card:hover .card-img-wrap .svc-img { transform: scale(1.08); }
.services-section .service-card .card-img-wrap .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,11,8,0.55) 0%, transparent 55%); }
.services-section .service-card .card-img-wrap .svc-num { position: absolute; top: 1rem; right: 1.1rem;     font-family: 'Gilda Display', serif; font-size: 0.78rem; color: rgba(232,209,153,0.65); letter-spacing: 0.08em; }
.services-section .service-card .card-body { padding: 1.8rem 2rem 2.2rem; flex: 1; display: flex; flex-direction: column; border-top: 1px solid rgba(196,151,58,0.12); }
.services-section .service-card .card-body .svc-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; line-height: 1; }
.services-section .service-card .card-body .svc-title {     font-family: 'Gilda Display', serif; font-size: 1.55rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.7rem; line-height: 1.2; }
.services-section .service-card .card-body .svc-desc {   font-weight: 300; color: var(--warm); line-height: 1.8; flex: 1; margin-bottom: 1.6rem; }
.services-section .service-card .card-body .svc-link { display: inline-flex; align-items: center; gap: 0.5rem;  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dk); transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.services-section .service-card .card-body .svc-link:hover { color: var(--gold); gap: 0.9rem; }
.services-section .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px; background: linear-gradient(to right, var(--gold-dk), var(--gold-lt)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.services-section .service-card:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   AMBIENCE STRIP
═══════════════════════════════════════════ */
.ambience-strip { background: var(--charcoal); padding: 5rem 0; position: relative; overflow: hidden; display:none}
.ambience-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(196,151,58,0.06), transparent 70%); pointer-events: none; }
.ambience-strip .strip-col { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem .5rem; border-right: 1px solid rgba(196,151,58,0.1); }
.ambience-strip .strip-col:last-child { border-right: none; }
.ambience-strip .strip-col .strip-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.2rem; }
.ambience-strip .strip-col .strip-title {     font-family: 'Gilda Display', serif; font-weight: 400; color: var(--ivory); margin-bottom: 0.6rem; }
.ambience-strip .strip-col .strip-text {   font-weight: 300; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section { background: var(--dark); position: relative; overflow: hidden; padding: 7rem 0; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(196,151,58,0.07), transparent 60%); pointer-events: none; }
.cta-section .cta-content-col { display: flex; flex-direction: column; justify-content: center; padding: 2rem 3rem 2rem 0; border-right: 1px solid rgba(196,151,58,0.1); }
.cta-section .cta-content-col .cta-eyebrow { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.8rem; }
.cta-section .cta-content-col .cta-eyebrow .cta-rule { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.cta-section .cta-content-col .cta-eyebrow .cta-label {  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.cta-section .cta-content-col .cta-title {     font-family: 'Gilda Display', serif; font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 300; color: var(--ivory); line-height: 1.1; margin-bottom: 1.4rem; }
.cta-section .cta-content-col .cta-title em { color: var(--gold-lt); font-style: italic; display: block; }
.cta-section .cta-content-col .cta-body { font-weight: 300; color: rgba(250,246,239,0.5); line-height: 1.85; max-width: 440px; margin-bottom: 2.5rem; }
.cta-section .cta-content-col .cta-highlights { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.cta-section .cta-content-col .cta-highlights li { display: flex; align-items: center; gap: 0.85rem;  font-weight: 300; color: rgba(250,246,239,0.55); }
.cta-section .cta-content-col .cta-highlights li .hi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cta-section .cta-panel-col { display: flex; align-items: center; justify-content: center; padding: 2rem 0 2rem 3rem; }
.cta-section .cta-panel-col .cta-card { background: rgba(250,246,239,0.035); border: 1px solid rgba(196,151,58,0.18); border-radius: 4px; padding: 3rem 2.5rem; width: 100%; max-width: 340px; text-align: center; }
.cta-section .cta-panel-col .cta-card .card-top-label {  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.cta-section .cta-panel-col .cta-card .card-phone {     font-family: 'Gilda Display', serif; font-size: 2rem; font-weight: 400; color: var(--gold-lt); letter-spacing: 0.04em; margin-bottom: 0.2rem; transition: color 0.3s; display: block; }
.cta-section .cta-panel-col .cta-card .card-phone:hover { color: var(--gold); }
.cta-section .cta-panel-col .cta-card .card-avail {  font-size: 0.68rem; font-weight: 300; color: var(--muted); margin-bottom: 0.3rem; }
.cta-section .cta-panel-col .cta-card .card-divider { width: 40px; height: 1px; background: rgba(196,151,58,0.25); margin: 1.8rem auto; }
.cta-section .cta-panel-col .cta-card .card-btn-call { display: flex; align-items: center; justify-content: center; gap: 0.6rem; background: var(--gold); color: var(--dark);  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 1.05rem; border-radius: 2px; box-shadow: 0 4px 22px var(--gold-glow); transition: background 0.35s var(--ease), transform 0.3s var(--ease), box-shadow 0.35s var(--ease); margin-bottom: 0.8rem; width: 100%; }
.cta-section .cta-panel-col .cta-card .card-btn-call:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,151,58,0.3); color: var(--dark); }
.cta-section .cta-panel-col .cta-card .card-or {  font-size: 0.62rem; color: var(--muted); margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.cta-section .cta-panel-col .cta-card .card-btn-wa { display: flex; align-items: center; justify-content: center; gap: 0.6rem; background: transparent; border: 1px solid rgba(196,151,58,0.25); color: var(--gold-lt);  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.85rem; border-radius: 2px; width: 100%; transition: border-color 0.3s, color 0.3s, background 0.3s; }
.cta-section .cta-panel-col .cta-card .card-btn-wa:hover { background: rgba(196,151,58,0.08); border-color: var(--gold); color: var(--gold); }
.cta-section .cta-panel-col .cta-card .card-timing {  font-size: 0.65rem; font-weight: 300; color: var(--muted); margin-top: 1.5rem; letter-spacing: 0.06em; }
.cta-section .cta-panel-col .cta-card .card-timing span { color: rgba(196,151,58,0.6); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.34s; }
.reveal.d4 { transition-delay: 0.46s; }
.reveal.d5 { transition-delay: 0.58s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-section .hero-content-col .hero-eyebrow { animation: fadeUp 0.8s 0.2s var(--ease-out) both; }
.hero-section .hero-content-col .hero-hotel-tag { animation: fadeUp 0.8s 0.3s var(--ease-out) both; }
.hero-section .hero-content-col .hero-title { animation: fadeUp 0.85s 0.38s var(--ease-out) both; }
.hero-section .hero-content-col .hero-tagline { animation: fadeUp 0.8s 0.5s var(--ease-out) both; }
.hero-section .hero-content-col .hero-desc { animation: fadeUp 0.8s 0.62s var(--ease-out) both; }
.hero-section .hero-content-col .hero-actions { animation: fadeUp 0.8s 0.74s var(--ease-out) both; }
.hero-section .hero-image-col { animation: fadeIn 1.1s 0.4s var(--ease-out) both; }
.hero-section .hero-stats { animation: fadeUp 0.8s 0.9s var(--ease-out) both; }

/* ═══════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-section .hero-content-col { padding: 3.5rem 2rem; }
  .hero-section .hero-content-col::after { display: none; }
  .hero-section .hero-image-col { min-height: 52vw; }
  .cta-section .cta-content-col { border-right: none; border-bottom: 1px solid rgba(196,151,58,0.1); padding: 2rem 0; margin-bottom: 2.5rem; }
  .cta-section .cta-panel-col { padding: 0; justify-content: flex-start; }
  .ambience-strip .strip-col { border-right: none; border-bottom: 1px solid rgba(196,151,58,0.08); }
  .ambience-strip .strip-col:last-child { border-bottom: none; }
}
@media (max-width: 575.98px) {
  .hero-section .hero-content-col { padding: 2.5rem 1.5rem; }
  .hero-section .hero-image-col { min-height: 65vw; }
  .hero-section .hero-stats .stat-divider { display: none; }
  .services-section .service-card .card-img-wrap { height: 200px; }
  .cta-section { padding: 4rem 0; }
} 





    /* Hero */
    .contact-hero { position: relative; z-index: 1; background: var(--dark); padding: 250px 0 56px; text-align: center; border-bottom: 1px solid rgba(196,151,58,0.2);height: 72vh;}
    .contact-hero::after { content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); }
    .contact-hero .hero-label {  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 20px; }
    .contact-hero .hero-label::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); opacity: 0.55; }
    .contact-hero .hero-label::after { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); opacity: 0.55; }
    .contact-hero .hero-name {     font-family: 'Gilda Display', serif;  font-weight: 300; color: var(--ivory); letter-spacing: 0.02em; line-height: 1.1; }
    .contact-hero .hero-name em { font-style: italic; color: var(--gold-lt); }
    .contact-hero .hero-tagline {  font-size: 0.8rem; font-weight: 300; letter-spacing: 0.14em; color: var(--muted); margin-top: 14px; }
    .contact-hero .hero-ornament { margin-top: 26px; font-size: 1.2rem; color: var(--gold); opacity: 0.45; }

    /* Main section */
    .contact-section { position: relative; z-index: 1; padding: 72px 0 90px; }

    /* Divider row */
    .section-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
    .section-divider::before { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(196,151,58,0.35)); }
    .section-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to left, transparent, rgba(196,151,58,0.35)); }
    .section-divider .divider-label {  font-size: 0.63rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

    /* Info card */
    .info-card { background: linear-gradient(145deg, rgba(26,23,18,0.92), rgba(13,11,8,0.96)); border: 1px solid rgba(196,151,58,0.15); border-radius: 4px; padding: 44px 36px; position: relative; height: 100%; transition: border-color 0.4s var(--ease); }
    .info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s var(--ease); }
    .info-card:hover { border-color: rgba(196,151,58,0.38); }
    .info-card:hover::before { opacity: 1; }

    /* Card header */
    .info-card .hotel-name {     font-family: 'Gilda Display', serif; font-size: 1.9rem; font-weight: 400; color: var(--ivory); line-height: 1.2; margin-bottom: 6px; }
    .info-card .hotel-city {  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; }
    .info-card .card-rule { width: 44px; height: 1px; background: var(--gold); opacity: 0.55; margin-bottom: 30px; }

    /* Contact items */
    .contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(196,151,58,0.08); }
    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .item-icon-wrap { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(196,151,58,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gold-glow); transition: all 0.3s var(--ease); }
    .contact-item:hover .item-icon-wrap { background: rgba(196,151,58,0.22); border-color: var(--gold); }
    .item-icon-wrap i { font-size: 0.85rem; color: var(--gold); }
    .item-content { flex: 1; }
    .item-content .item-label {  font-size: 0.58rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
    .item-content .item-value {  font-size: 0.88rem; color: var(--ivory); font-weight: 400; line-height: 1.65; }
    .item-content .item-value a { color: var(--ivory); text-decoration: none; transition: color 0.25s var(--ease); }
    .item-content .item-value a:hover { color: var(--gold-lt); }

    /* Map card */
    .map-card { background: linear-gradient(145deg, rgba(26,23,18,0.92), rgba(13,11,8,0.96)); border: 1px solid rgba(196,151,58,0.15); border-radius: 4px; overflow: hidden; height: 100%; min-height: 500px; display: flex; flex-direction: column; }
    .map-header { padding: 24px 28px 18px; border-bottom: 1px solid rgba(196,151,58,0.12); display: flex; align-items: center; gap: 14px; }
    .map-header-icon { width: 34px; height: 34px; flex-shrink: 0; border: 1px solid rgba(196,151,58,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gold-glow); }
    .map-header-icon i { font-size: 0.78rem; color: var(--gold); }
    .map-header-text { flex: 1; }
    .map-header-text .map-title {     font-family: 'Gilda Display', serif; font-size: 1.05rem; font-weight: 400; color: var(--ivory); }
    .map-header-text .map-subtitle {  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
    .map-embed-wrap { flex: 1; position: relative; min-height: 360px; }
    .map-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
    .map-footer { padding: 16px 28px; border-top: 1px solid rgba(196,151,58,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .map-footer .map-hint {  font-size: 0.7rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .map-footer .map-hint i { color: var(--gold); font-size: 0.62rem; }
    .map-footer .map-open-btn { display: inline-flex; align-items: center; gap: 8px;  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(196,151,58,0.4); padding: 8px 18px; border-radius: 2px; transition: all 0.3s var(--ease); }
    .map-footer .map-open-btn:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold-lt); }
    .map-footer .map-open-btn i { font-size: 0.62rem; }

    /* Footer */
    .contact-footer { position: relative; z-index: 1; border-top: 1px solid rgba(196,151,58,0.12); padding: 32px 0; }
    .contact-footer .brand-name {     font-family: 'Gilda Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--ivory); letter-spacing: 0.05em; }
    .contact-footer .brand-name span { color: var(--gold); }
    .contact-footer .footer-tagline {     font-family: 'Gilda Display', serif; font-size: 0.83rem; font-style: italic; color: var(--muted); }
    .contact-footer .footer-copy {  font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; }

    /* Animations */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    .fade-up { animation: fadeUp 0.75s var(--ease-out) both; }
    .d1 { animation-delay: 0.08s; }
    .d2 { animation-delay: 0.18s; }
    .d3 { animation-delay: 0.28s; }
    .d4 { animation-delay: 0.38s; }
    .d5 { animation-delay: 0.48s; }

    /* Responsive */
    @media (max-width: 767px) {
      .contact-hero { padding: 180px 0 44px; height: 50vh; }
      .info-card { padding: 30px 20px; margin-bottom: 20px; }
      .map-card { min-height: 420px; }
      .contact-footer .footer-tagline { display: none; }
    }
 

     .hero-banner-suroundings {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        .hero-banner-suroundings-bg {
            position: absolute;
            inset: 0;
            background-image: url('../Images/Surroundings/Google-map.webp');
            background-size: cover;
            background-position: center;
            filter: brightness(0.55) saturate(0.7);
            transform: scale(1.04);
            transition: transform 8s ease;
        }
        .hero-banner-suroundings:hover .hero-banner-suroundings-bg { transform: scale(1.0); }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(13,11,8,0.25) 0%,
                rgba(13,11,8,0.15) 30%,
                rgba(13,11,8,0.6) 65%,
                rgba(13,11,8,0.92) 100%
            );
        }

        .hero-side-accent {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px; 
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 0 70px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(196,151,58,0.12);
            border: 1px solid rgba(196,151,58,0.35);
            padding: 9px 18px;
            font-size: 11px;
            font-weight: 500;
            color: var(--gold-lt);
            margin-bottom: 24px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }
        .hero-badge i { color: var(--gold); font-size: 13px; }

        .hero-title {
          font-family: 'Barlow', sans-serif;
          font-size: 50px;
          line-height: 1.0;
          color: var(--ivory);
          font-weight: 600;
          letter-spacing: -1px;
          margin-bottom: 20px;
        }
        .hero-title span { color: var(--gold); font-style: italic;   font-family: sans-serif;}

       

        .hero-divider {
            width: 50px;
            height: 1px;
            background: var(--gold);
            margin-bottom: 36px;
            opacity: 0.7;
        }

        .hero-tagline {
                font-family: 'Gilda Display', serif;
            font-size: clamp(18px, 2.5vw, 26px);
            color: var(--gold-lt);
            font-style: italic;
            font-weight: 500;
            margin-bottom: 38px;
        }

        

        .hero-feature-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(13,11,8,0.55);
            border: 1px solid rgba(196,151,58,0.25);
            backdrop-filter: blur(8px);
            padding: 12px 18px;
            color: var(--ivory);
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.3px;
            transition: all 0.3s var(--ease);
        }
        .hero-feature-pill:hover {
            background: rgba(196,151,58,0.14);
            border-color: rgba(196,151,58,0.5);
        }
        .hero-feature-pill i { color: var(--gold); font-size: 15px; }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 32px;
            right: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(250,246,239,0.4);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 2;
        }
        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%,100% { opacity: 0.4; transform: scaleY(1); }
            50% { opacity: 1; transform: scaleY(1.1); }
        }

   
 

        /* ─── WHY SECTION (unchanged style, kept below banner) ───── */
        .why-section { background: var(--cream); padding: 0 0 0; }

        .why-card { background:var(--dark); border:1px solid rgba(196,151,58,0.12); padding:52px 48px; position:relative; }
        .why-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--gold-glow),transparent); }
        .why-card h3 { margin-bottom: 40px; color: var(--ivory); font-size: 30px; }
        .why-card h3 span { color:var(--gold); font-style:italic; }
        .why-list { display:flex; gap:25px; flex-wrap:wrap; }
        .why-item { display:flex; gap:18px; align-items:flex-start; flex:1 1 200px; }
        .why-item .icon { width:50px; height:50px; min-width:50px; background:transparent; border:1px solid rgba(196,151,58,0.35); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:20px; flex-shrink:0; transition:all 0.3s var(--ease); }
        .why-item:hover .icon { background:rgba(196,151,58,0.12); border-color:var(--gold); }
        .why-item h6 { font-size:15px; font-weight:600; margin-bottom:5px; color:var(--ivory); letter-spacing:0.3px; }
        .why-item p { margin:0; color:var(--muted); line-height:1.75; font-size:13px; font-weight:300; }

        /* ─── PLACES SECTION ──────────────────────────────────────── */
        .places-section { padding: 80px 0 60px; background: var(--cream); }

        .section-heading { text-align:center; margin-bottom:56px; position:relative; }
        .section-heading::after { content:''; display:block; width:60px; height:1px; background:var(--gold); margin:18px auto 0; }
        .section-heading .eyebrow { display:block; font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:14px; font-weight:500; }
        .section-heading h2 { font-family:var(--font-d); font-size:40px; color:var(--charcoal); font-weight:600; line-height:1.1; }
        .section-heading h2 span { color:var(--gold); font-style:italic; }

        /* Two-column places layout */
        .places-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid rgba(196,151,58,0.15);
            overflow: hidden;
        }

        .places-image-col {
            position: relative;
            min-height: 560px;
            overflow: hidden;
        }
        .places-image-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.75) saturate(0.7);
            transition: transform 0.8s var(--ease), filter 0.5s ease;
        }
        .places-image-col:hover img {
            transform: scale(1.04);
            filter: brightness(0.85) saturate(0.85);
        }
        .places-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13,11,8,0.45) 0%, rgba(13,11,8,0.1) 60%, transparent 100%);
            pointer-events: none;
        }
        .places-img-label {
            position: absolute;
            bottom: 28px;
            left: 28px;
            z-index: 2;
        }
        .places-img-label span {
            display: block;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
            font-weight: 500;
        }
        .places-img-label h3 {
                font-family: 'Gilda Display', serif;
            font-size: 34px;
            color: var(--ivory);
            font-weight: 600;
            line-height: 1.1;
        }

        /* Right column: list of places */
        .places-list-col {
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
        }

        .place-row {
            display: flex;
            align-items: stretch;
            border-bottom: 1px solid rgba(196,151,58,0.08);
            transition: background 0.3s var(--ease);
            cursor: default;
            position: relative;
        }
        .place-row:last-child { border-bottom: none; }
        .place-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.3s var(--ease);
            transform-origin: bottom;
        }
        .place-row:hover { background: rgba(196,151,58,0.05); }
        .place-row:hover::before { transform: scaleY(1); }

         

        .place-info {
            flex: 1;
            padding:20px 20px 20px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .place-name {
                font-family: 'Gilda Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--ivory);
            line-height: 1.2;
        }
        .place-sub {
            font-size: 12px; color: #bfb9b5; margin-top: 3px; letter-spacing: 0.3px;
        }

        .place-time-tag {
            background: rgba(196,151,58,0.12);
            border: 1px solid rgba(196,151,58,0.3);
            color: var(--gold);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            padding: 7px 14px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ─── BOTTOM INFO ──────────────────────────────────────────── */
        .bottom-info { padding: 0 0 80px; background: var(--cream); }

        .info-box { background:var(--charcoal); border:1px solid rgba(196,151,58,0.1); padding:30px 15px; height:100%; transition:all 0.35s var(--ease); position:relative; overflow:hidden;border-radius:4px; }
        .info-box::before { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:width 0.4s var(--ease); }
        .info-box:hover { border-color:rgba(196,151,58,0.3); }
        .info-box:hover::before { width:100%; }
        .info-box .bi { font-size:32px; color:var(--gold); margin-bottom:16px; display:inline-block; opacity:0.85; }
        .info-box h5 { font-weight:600; margin-bottom:14px; color:var(--ivory); font-size:14px; letter-spacing:0.8px; text-transform:uppercase; }
        .info-box p, .info-box li { color:var(--muted); line-height:1.9; font-size:13px; font-weight:300; }
        .info-box ul { padding-left:0; margin:0; list-style:none; }
        .info-box ul li { padding:5px 0; border-bottom:1px solid rgba(196,151,58,0.07); }
        .info-box ul li:last-child { border-bottom:none; }
        .info-box ul li::before { content:'—'; color:var(--gold); margin-right:8px; opacity:0.6; }

        .surroundings .containerfluid{padding:0 3rem !important;}

        /* ─── RESPONSIVE ───────────────────────────────────────────── */
        @media(max-width:991px) {
            .places-wrapper { grid-template-columns: 1fr; }
            .places-image-col { min-height: 340px; }
            .why-card { padding: 32px 24px; }
            .why-list { gap: 20px; }
        }
        @media(max-width:767px) {
            .hero-content { padding-bottom: 50px; } 
            .hero-feature-pill { font-size: 12px; padding: 10px 14px; }
            .places-section { padding: 50px 0 40px; } 
            .place-name { font-size: 17px; }
            .hero-scroll-indicator { right: 20px; }
        }

        .mobile-book-now{
          position:fixed;
          bottom:0;
          left:0;
          width:100%;
          z-index:9999;
          background:linear-gradient(135deg,var(--gold),var(--gold-dk));
          color:var(--white);
          font-family:var(--font-b);
          font-size:16px;
          font-weight:600;
          text-align:center;
          text-decoration:none;
          padding:16px 20px;
          letter-spacing:.5px;
          box-shadow:0 -5px 25px var(--gold-glow);
          border-top:1px solid rgba(255,255,255,0.08);
          transition:all .4s var(--ease);
          display:none;
          align-items:center;
          justify-content:center;
          gap:10px;
        }

        .mobile-book-now i{
          font-size:18px;
          color:var(--gold-lt);
        }

        .mobile-book-now:hover{
          color:var(--white);
          background:linear-gradient(135deg,var(--gold-lt),var(--gold));
        }

        @media (max-width:768px){
          .mobile-book-now{
            display:flex;
          }
        }

        .sitemap-page{padding:250px 0 80px;background:var(--dark);position:relative;}

.sitemap-page .sitemap-heading{text-align:center;margin-bottom:80px;}

.sitemap-page .sitemap-heading span{display:inline-block;color:var(--gold);font-size:12px;font-weight:700;letter-spacing:4px;text-transform:uppercase;margin-bottom:15px;font-family:var(--main-font);}

.sitemap-page .sitemap-heading h1{font-family:var(--main-font);font-size:45px;font-weight:700;color:var(--gold);margin:0;}

.sitemap-page .sitemap-block{height:100%;background:var(--charcoal);border:1px solid rgba(196,151,58,.15);padding:45px;border-radius:30px;transition:.4s;}

.sitemap-page .sitemap-block:hover{border-color:var(--gold);transform:translateY(-5px);box-shadow:0 15px 35px rgba(196,151,58,.12);}

.sitemap-page .sitemap-feature-block{background:linear-gradient(135deg,#1d1914,#14110d);border:1px solid rgba(196,151,58,.2);padding:55px;border-radius:30px;position:relative;overflow:hidden;}

.sitemap-page .sitemap-feature-block:before{content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,transparent,var(--gold),transparent);}

.sitemap-page .sitemap-block h3,.sitemap-page .sitemap-feature-block h3{font-family:var(--main-font);font-size:20px;font-weight:700;color:var(--gold);margin-bottom:30px;}

.sitemap-page .sitemap-block ul,.sitemap-page .sitemap-feature-block ul{list-style:none;padding:0;margin:0;}

.sitemap-page .sitemap-block ul li,.sitemap-page .sitemap-feature-block ul li{margin-bottom:16px;}

.sitemap-page .sitemap-block ul li a,.sitemap-page .sitemap-feature-block ul li a{color:rgba(255,255,255,.75);text-decoration:none;font-size:15px;font-weight:500;font-family:var(--main-font);transition:.3s;display:inline-flex;align-items:center;}

.sitemap-page .sitemap-block ul li a:before,.sitemap-page .sitemap-feature-block ul li a:before{content:"";width:8px;height:8px;background:var(--gold);border-radius:50%;margin-right:12px;}

.sitemap-page .sitemap-block ul li a:hover,.sitemap-page .sitemap-feature-block ul li a:hover{color:var(--gold);padding-left:8px;}

.policy-section{padding:250px 0 80px;background:var(--dark);}

.policy-section .policy-header{max-width:850px;margin:0 auto 70px;}

.policy-section .policy-subtitle{display:inline-block;color:var(--gold);font-family:var(--main-font);font-size:13px;font-weight:600;letter-spacing:4px;text-transform:uppercase;margin-bottom:15px;}

.policy-section .policy-title{font-family:var(--main-font);font-size:45px;font-weight:700;color:var(--gold);margin-bottom:20px;}

.policy-section .policy-intro{max-width:750px;margin:auto;color:rgba(255,255,255,.7);font-family:var(--main-font);font-size:17px;line-height:1.9;}

.policy-section .policy-content{margin:auto;background:var(--charcoal);border:1px solid rgba(196,151,58,.15);border-radius:30px;padding:60px;}

.policy-section .policy-item{padding:0 0 35px;margin:0 0 35px;border-bottom:1px solid rgba(255,255,255,.08);}

.policy-section .policy-item:last-child{padding:0;margin:0;border:none;}

.policy-section .policy-item h3{font-family:var(--main-font);font-size:24px;font-weight:700;color:var(--gold);margin-bottom:15px;}

.policy-section .policy-item p{margin:0;color:rgba(255,255,255,.72);font-family:var(--main-font);font-size:15px;line-height:2;}
/* Desktop Only */
.desktop-block-mobile-none { display: block; }

@media (max-width: 991.98px) {
    .desktop-block-mobile-none { display: none; }
}

/* Mobile Only */
.desktop-none-mobile-block { display: none; }

@media (max-width: 991.98px) {
    .desktop-none-mobile-block { display: block; }
}
        @media(max-width:767px) {
        

          .top-bar{
            display:none
          }
          .unscroll-book {
            display:none
          }
          section{
            overflow:hidden
          }
          .premium-call{
            display:none
          }
          .hero-bg { 
              background: url(../Images/single-room.webp) center/cover no-repeat; 
          }
          .main-hero .hero-title span {
              color: #fff;
              font-size: 28px;
          }
          .main-hero .hero-title {
              font-size: 30px; 
          }
          .overview-title-text h4 br{
              display:none
          }
          .overview-title-text h4 {
              color: #000;
              font-size: 20px;
              font-weight: 500;
          }
          .hero-left-col {
            text-align: center;
            margin-top: 350px;
            }
            .overview .row{
                --bs-gutter-y: 0rem !important;
                text-align: start !important;
            }
            .overview-title-text { 
                align-items: start !important;
                text-align: start;
            }
          .lantern-hero .row{
              flex-direction: column-reverse;
          }
          .lantern-hero-content { 
              padding: 2rem 1rem 0; 
          }
          .lantern-hero .row img{
            width: 50%;
          }
          .intro-split__img{
            display:none
          }
          .rooms .rc .rc-body .rc-actions .btn-outline,
          .rooms .rc .rc-body .rc-actions .btn-fill { 
                font-size: 12px; 
            }
            .dining-split .ds-sub { 
                font-size: 16px;  
            }
          .room-hero .hero-title { 
              font-size: 40px; 
          }
          .overview .container{
            margin-bottom:0 !important
          }
          .room-hero .hero-subtitle {
            margin-bottom: 10px !important;
            display: none;
          }
          .room-hero .hero-cta { 
              margin-bottom: 50px;
          }
          .Karnataka-tourisam {
              position: relative;
              z-index: 99;
              bottom: 0;
              left: 0%;
          }
              .surroundings .sur-num {
              display: none;
          }
          .surroundings .containerfluid{padding:0 12px !important;}
          .surroundings .namma-bengaluru-img{
            width: 60%; 
          }
          .custom-dropdown.default .dd-item .dd-meta { 
              padding: 13px 15px 15px; 
          }
          header.scrolled .main-nav .nav-book {
            display: none;
        }
        }

