@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;700&display=swap");

/* ════════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════ */
:root {
  /* ── Colour: Accent ── */
  /* Elegant champagne gold - refined from rose gold to a more neutral, sophisticated gold */
  --gold: #C9A962;
  --gold-light: #D4BC7E;
  --gold-dark: #A68B4B;
  --gold-muted: rgba(201, 169, 98, 0.15);

  /* ── Colour: Surface ── */
  --base: oklch(0.98 0.01 20);
  /* page background  */
  --surface: oklch(0.96 0.01 20);
  /* card / panel     */
  --elevated: oklch(0.94 0.01 20);
  /* raised surface   */
  --ink: #000;
  --ink-inv: #fff;

  /* ── Colour: Text ── */
  --text-main: oklch(0.25 0.02 20);
  --text-muted: oklch(0.45 0.02 20);

  /* ── Colour: Utility ── */
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-border-light: rgba(255, 255, 255, 0.12);
  --white-a10: rgba(255, 255, 255, 0.10);
  --white-a20: rgba(255, 255, 255, 0.20);
  --white-a50: rgba(255, 255, 255, 0.50);
  --white-a70: rgba(255, 255, 255, 0.70);
  --white-a85: rgba(255, 255, 255, 0.85);
  --white-a90: rgba(255, 255, 255, 0.90);
  --black-a03: rgba(0, 0, 0, 0.03);
  --black-a05: rgba(0, 0, 0, 0.05);
  --black-a08: rgba(0, 0, 0, 0.08);
  --black-a30: rgba(0, 0, 0, 0.30);
  --black-a60: rgba(0, 0, 0, 0.60);
  --black-a95: rgba(0, 0, 0, 0.95);

  /* ── Shadow ── */
  /* Refined shadows with gold tint for subtle warmth */
  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.25);
  --shadow-gold-sm: 0 4px 16px rgba(201, 169, 98, 0.15);

  /* ── Border Radius ── */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* ── Typography ── */
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Outfit", sans-serif;
  --h1: clamp(32px, 8vw, 90px);
  --h2: clamp(28px, 5vw, 56px);
  --h3: clamp(22px, 3vw, 32px);

  /* ── Spacing ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --section-padding: clamp(60px, 8vw, 120px);
  --container-px: clamp(16px, 5vw, 64px);

  /* ── Motion ── */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.40, 0, 0.20, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s;
  --t-base: 0.3s;
  --t-slow: 0.5s;
  --t-reveal: 0.8s;
  --t-luxury: 1.2s;

  /* ── Z-Index ── */
  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 100;
  --z-nav: 1000;
  --z-overlay: 1999;
  --z-menu: 2000;
  --z-lightbox: 9999;
}


/* ════════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ════════════════════════════════════════════════════════
   BASE
════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  background: var(--base);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Phosphor icon baseline alignment */
.ph {
  vertical-align: middle;
  line-height: 1;
}


/* ════════════════════════════════════════════════════════
   LAYOUT PRIMITIVES
════════════════════════════════════════════════════════ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}


/* ════════════════════════════════════════════════════════
   TYPOGRAPHY PRIMITIVES
   Single source of truth for section labels + headings.
════════════════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 80px);
}

.section-header .eyebrow {
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--h2);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: var(--space-5) auto 0;
  line-height: 1.6;
  font-weight: 300;
}


/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */

/* ── Primary filled ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink-inv);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base) var(--ease-smooth), 
              transform var(--t-base) var(--ease-smooth),
              box-shadow var(--t-base) var(--ease-smooth);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-sm);
}

.btn-primary:hover::before {
  left: 100%;
}

/* ── Ghost / outlined ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: border-color var(--t-base), color var(--t-base);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Nav CTA ── */
.nav-btn {
  background: var(--gold);
  color: var(--ink-inv);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base) var(--ease-smooth), 
              transform var(--t-base) var(--ease-smooth), 
              box-shadow var(--t-base) var(--ease-smooth);
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out);
}

.nav-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-btn:hover::before {
  left: 100%;
}

/* ── Hero text link button ── */
.hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-inv);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--white-a20);
  padding-bottom: var(--space-2);
  transition: letter-spacing var(--t-slow) var(--ease-out),
    border-color var(--t-slow) var(--ease-out),
    gap var(--t-slow) var(--ease-out);
}

.hero-explore:hover {
  letter-spacing: 6px;
  border-color: var(--ink-inv);
  gap: 20px;
}

/* ── Welcome "Read More" ── */
.btn-lara-read {
  display: inline-block;
  background: var(--gold);
  color: var(--ink-inv);
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.btn-lara-read:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--black-a08);
}

/* ── Room card buttons ── */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink-inv);
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t-base);
}

.btn-book-now:hover {
  background: var(--gold-dark);
}

.btn-book-now .ph {
  font-size: 15px;
}

.btn-view-room {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--t-base);
}

.btn-view-room:hover {
  border-color: var(--ink);
}

/* ── Booking sidebar CTA ── */
.btn-book-large {
  display: inline-block;
  width: 100%;
  background: var(--gold);
  color: var(--ink-inv);
  padding: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-bottom: var(--space-4);
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.btn-book-large:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--black-a08);
}

/* ── Offer card link ── */
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap var(--t-base), opacity var(--t-base);
}

.offer-link:hover {
  opacity: 0.75;
  gap: 14px;
}


/* ════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(16px, 3vh, 32px) var(--container-px);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--white-a10);
  transition: padding var(--t-slow) var(--ease-out),
    background var(--t-slow) var(--ease-out),
    box-shadow var(--t-slow) var(--ease-out);
  overflow: visible !important;
}

nav.scrolled {
  padding: 14px var(--container-px);
  background: var(--white-a85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--black-a08);
  box-shadow: 0 10px 30px var(--black-a03);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-inv);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-slow) var(--ease-out);
}

nav.scrolled .nav-logo {
  color: var(--text-main);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-logo-home {
  height: clamp(28px, 3vw, 36px);
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav-links a {
  color: var(--white-a90);
  font-size: clamp(10px, 0.8vw, 11px);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 10000;
  transition: color var(--t-base);
}

nav.scrolled .nav-links a {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}



.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: all var(--t-base) var(--ease-out);
  list-style: none;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white-a10);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
}

/* Bridge the gap between link and menu to prevent flicker */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(10px);
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu a {
  color: var(--white-a70);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: block;
  padding: 12px 30px;
  transition: all var(--t-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  padding-left: 35px;
}

/* Scrolled dropdown styles */
nav.scrolled .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--black-a08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

nav.scrolled .nav-dropdown-menu a {
  color: var(--text-main);
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

nav.scrolled .nav-dropdown-menu a:hover {
  background: var(--black-a03);
  color: var(--gold);
}



/* Mobile subnav enhancements */
.mobile-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subnav-toggle {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.has-subnav.open .subnav-toggle {
  transform: rotate(180deg);
}

.mobile-subnav {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--glass-border);
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.has-subnav.open .mobile-subnav {
  max-height: 500px;
  padding: 10px 0 10px 16px;
  margin-top: 5px;
}

.mobile-subnav a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-a70);
  padding: 8px 12px;
  display: block;
  transition: all var(--t-base);
}

.mobile-subnav a:hover {
  color: var(--gold);
  padding-left: 18px;
}

.mobile-subnav a:hover {
  color: var(--gold);
  padding-left: 18px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-inv);
  border-radius: var(--radius-xs);
  transition: background var(--t-base) var(--ease-in-out);
}

nav.scrolled .nav-hamburger span {
  background: var(--text-main);
}


/* ════════════════════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--surface);
  z-index: var(--z-menu);
  padding: 60px 40px 40px;
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  transition: right var(--t-slow) var(--ease-in-out);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--t-base), color var(--t-base);
}

.mobile-menu-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: var(--space-5);
}

.mobile-nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: color var(--t-base);
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--black-a60);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity var(--t-slow);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}


/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 80px);
  object-fit: cover;
  z-index: var(--z-base);
}

.hero-overlay {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      var(--black-a30) 0%,
      rgba(0, 0, 0, 0.15) 30%,
      rgba(0, 0, 0, 0.20) 70%,
      var(--black-a60) 100%);
  z-index: var(--z-base);
}

.hero-content {
  position: relative;
  z-index: var(--z-raised);
  text-align: center;
  color: var(--ink-inv);
  max-width: 900px;
  animation: fadeUp 1.4s var(--ease-out) both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--h1);
  font-weight: 400;
  color: var(--ink-inv);
  letter-spacing: clamp(4px, 1vw, 8px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--space-6);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-6) auto;
  opacity: 1;
  border-radius: var(--radius-xs);
}

.hero-sub {
  color: var(--white-a90);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 520px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

/* Hero bottom bar */
.story-link {
  background: var(--gold);
  color: var(--ink-inv);
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base) var(--ease-smooth),
              box-shadow var(--t-base) var(--ease-smooth);
}

.story-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out);
}

.story-link:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

.story-link:hover::before {
  left: 100%;
}


/* ════════════════════════════════════════════════════════
   FEATURES ROW
════════════════════════════════════════════════════════ */
.features-row {
  background: var(--ink-inv);
  padding: var(--section-padding) var(--container-px);
  border-bottom: 1px solid var(--glass-border);
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.feature-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(24px, 3vw, 48px) clamp(12px, 2vw, 28px);
  border-left: 1px solid var(--glass-border);
  min-width: 0;
  transition: background var(--t-base);
}

.feature-item:first-child {
  border-left: none;
}

.feature-item:hover {
  background: var(--surface);
}

.feature-item:hover .feature-num {
  opacity: 1;
  color: var(--gold);
}

.feature-item:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
  color: var(--gold);
}

.feature-num {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-5);
  opacity: 0.7;
}

.feature-icon {
  margin-bottom: var(--space-5);
  color: var(--gold);
  transition: transform var(--t-slow) var(--ease-out);
}

.feature-icon .ph {
  font-size: clamp(36px, 4vw, 48px);
  display: block;
}

.feature-item:hover .feature-icon {
  transform: translateY(-4px);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.feature-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}


/* ════════════════════════════════════════════════════════
   WELCOME / ABOUT
════════════════════════════════════════════════════════ */
.welcome-section {
  background: var(--ink-inv);
  padding: var(--section-padding) var(--container-px);
}

.welcome-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.welcome-visuals {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-image-single {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.welcome-image-single::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0.4;
  z-index: -1;
}

.welcome-visuals img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: block;
}

.welcome-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.welcome-title {
  font-family: var(--font-serif);
  font-size: var(--h2);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 400;
}

.welcome-content .description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

/* Ratings strip */
/* ════════════════════════════════════════════════════════
   TARIFF
════════════════════════════════════════════════════════ */

.tariff-row {
  margin-top: clamp(80px, 10vw, 140px);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  position: relative;
  overflow: hidden;
}

/* Soft gold background glow effect behind the section */
.tariff-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tariff-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tariff-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
}

.tariff-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .tariff-container {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}

.tariff-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.tariff-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 30px rgba(201, 169, 98, 0.08);
}

.tariff-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.tariff-item:hover .tariff-name {
  color: var(--gold-dark);
}

.tariff-dash {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201, 169, 98, 0.2) 0, rgba(201, 169, 98, 0.2) 4px, transparent 4px, transparent 8px);
}

.tariff-price {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-dark);
  white-space: nowrap;
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
  display: flex;
  align-items: baseline;
}

.tariff-gst {
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Corporate Discount Redesign ── */

.corporate-discount {
  margin-top: 80px;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 98, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Luxury accent details inside the corporate card */
.corporate-discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.corporate-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 2px;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.4;
  text-transform: uppercase;
}

.corporate-discount p.corp-sub {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.corporate-btn {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.corporate-btn:hover {
  background: var(--gold);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-sm);
}

/* ════════════════════════════════════════════════════════
   ROOMS / FACILITIES — EMBLA COLLECTION SLIDER
════════════════════════════════════════════════════════ */
.rooms-section {
  background: #fdfaf7;
  padding: var(--section-padding) var(--container-px);
}

.facilities-section {
  background: var(--ink-inv);
  padding: var(--section-padding) var(--container-px);
}

.facilities-grid-section {
  padding: var(--section-padding) var(--container-px);
  background: var(--surface);
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.f-card {
  background: var(--ink-inv);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.f-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.f-num {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 11px;
  color: var(--glass-border);
  font-weight: 600;
  letter-spacing: 1px;
}

.f-icon {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 25px;
}

.f-title {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--ink);
}

.f-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1400px) {
  .f-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .f-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .f-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .f-grid {
    grid-template-columns: 1fr;
  }
}

.rooms-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.rooms-header .eyebrow {
  margin-bottom: var(--space-4);
}

/* Embla wrapper — overflow:hidden is required by Embla.
   Cards use a border (not box-shadow) so nothing gets clipped. */
.collection-slider {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.collection-slider .slider-track {
  display: flex;
  will-change: transform;
}

.collection-slider .slider-slide {
  flex: 0 0 100%;
  padding: 0 72px;
  /* narrower — less dead space, arrows still clear */
}

/* Arrows */
.collection-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--ink-inv);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: var(--z-raised);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}

.collection-slider .slider-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--ink-inv);
}

.collection-slider .slider-arrow.prev {
  left: 12px;
}

.collection-slider .slider-arrow.next {
  right: 12px;
}

.collection-slider .slider-arrow .ph {
  font-size: 20px;
}

.collection-slider .slider-arrow svg {
  width: 20px;
  height: 20px;
}

/* Room card — border only, no shadow (shadow gets clipped by Embla overflow:hidden) */
.room-card-large {
  display: flex;
  flex-wrap: wrap;
  background: var(--ink-inv);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.room-info-pane {
  padding: clamp(20px, 3.5vw, 42px);
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Price tag — new structured component */
.room-price-tag {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--glass-border);
}

.room-price-tag .price-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.room-price-tag .price-val {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.room-price-tag .price-unit {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.room-name-large {
  font-family: var(--font-serif);
  font-size: var(--h3);
  color: var(--ink);
  margin-bottom: var(--space-1);
  font-weight: 400;
}

.room-price-large {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.room-desc-large {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  font-weight: 300;
}

.room-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-item .ph {
  font-size: 22px;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.detail-item span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 500;
}

.room-actions-large {
  display: flex;
  gap: 20px;
}

.room-actions-large.no-res .btn-view-room {
  min-width: 240px;
  text-align: center;
}

.room-image-pane {
  flex: 1.2 1 450px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.room-image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-reveal) var(--ease-out);
}

.slider-slide:hover .room-image-pane img {
  transform: scale(1.05);
}


/* ════════════════════════════════════════════════════════
   EXPLORE / GALLERY (bento)
════════════════════════════════════════════════════════ */
.explore {
  padding: var(--section-padding) var(--container-px);
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.explore-header-left {
  text-align: left;
  flex: 1;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  transition: all var(--t-base) var(--ease-smooth);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.btn-explore:hover {
  background: var(--gold);
  color: var(--ink-inv);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.25);
}

@media (max-width: 768px) {
  .explore-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .explore-header-left {
    text-align: center;
  }
}

.gallery-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.gallery-swiper {
  width: 100%;
  padding: 30px 0 60px;
}

.gallery-swiper .swiper-slide {
  transition: opacity 0.5s ease;
  opacity: 0.5;
  transform: scale(0.92);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-swiper .swiper-slide:not(.swiper-slide-active) .gallery-slide-inner {
  filter: brightness(0.7);
}

.gallery-slide-inner {
  position: relative;
  height: clamp(380px, 50vh, 580px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .gallery-slide-inner {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-slide-inner:hover img {
  transform: scale(1.08);
}

.gallery-slide-inner .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  padding-top: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: var(--ink-inv);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1.5px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .gallery-slide-inner:hover .gallery-label {
  transform: translateY(0);
  opacity: 1;
}

/* Swiper Customization */
.gallery-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.gallery-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.12);
  opacity: 1;
  width: 36px;
  height: 3px;
  margin: 0 !important;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 64px;
  height: 3px;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: var(--gold);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(4px);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--ink-inv);
  transform: scale(1.12);
  box-shadow: 0 6px 25px rgba(184, 148, 84, 0.3);
}

@media (max-width: 768px) {
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    display: none;
  }
  .gallery-slide-inner {
    height: 320px;
  }
  .gallery-swiper .swiper-slide {
    opacity: 1;
    transform: scale(1);
  }
  .gallery-swiper .swiper-slide:not(.swiper-slide-active) .gallery-slide-inner {
    filter: brightness(0.85);
  }
}


/* ════════════════════════════════════════════════════════
   GALLERY PAGE (full grid)
════════════════════════════════════════════════════════ */
.gallery-page-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-page-intro {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.gallery-page-intro .details-heading {
  margin-top: var(--space-3);
}

.gallery-grid-page {
  column-count: 3;
  column-gap: 20px;
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--elevated);
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-grid-item:hover img {
  transform: scale(1.04);
}

.gallery-grid-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-grid-item:hover .gallery-grid-item-overlay {
  opacity: 1;
}

.gallery-grid-item-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-grid-item:hover .gallery-grid-item-overlay::after {
  transform: scaleX(1);
}

.gallery-grid-item-overlay span {
  position: relative;
  color: var(--ink-inv);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 1.5px;
}

@media (max-width: 1024px) {
  .gallery-grid-page {
    column-count: 2;
    column-gap: 16px;
  }
  .gallery-grid-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .gallery-grid-page {
    column-count: 1;
    column-gap: 0;
  }
  .gallery-grid-item {
    margin-bottom: 12px;
  }
  .gallery-grid-item-overlay {
    opacity: 1;
  }
}

/* ════════════════════════════════════════════════════════
   NEWS & OFFERS
════════════════════════════════════════════════════════ */
.news-offers {
  padding: var(--section-padding) var(--container-px);
  background: var(--elevated);
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.offer-card {
  flex: 1 1 350px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
}

.offer-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}

.offer-card:hover::after {
  transform: scaleX(1);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.offer-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-inv);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  margin-bottom: var(--space-5);
  font-weight: 600;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.offer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}


/* ════════════════════════════════════════════════════════
   MAP
════════════════════════════════════════════════════════ */
.map-section {
  padding: var(--section-padding) var(--container-px);
}

.map-container {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
  filter: grayscale(60%) invert(90%) sepia(20%) hue-rotate(180deg);
  opacity: 0.85;
  transition: filter var(--t-slow), opacity var(--t-slow);
}

.map-container:hover iframe {
  filter: grayscale(20%) invert(90%) sepia(15%) hue-rotate(180deg);
  opacity: 1;
}


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.lara-footer {
  background: #0a0a0a;
  color: var(--ink-inv);
  padding: var(--section-padding) var(--container-px) 40px;
  font-family: var(--font-sans);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: var(--space-20);
  border-bottom: 1px solid var(--white-a10);
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col.brand-col {
  flex: 1.5 1 300px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--ink-inv);
  text-decoration: none;
  margin-bottom: 32px;
  display: block;
}

.brand-text {
  color: var(--white-a50);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: var(--space-10);
}

.footer-title {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

.footer-col.links-col {
  flex: 1.8 1 280px;
}

.footer-nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 30px;
}

.footer-nav a {
  color: var(--white-a50);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-base), transform var(--t-base);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.contact-info p {
  color: var(--white-a50);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.contact-info .phone,
.contact-info .email {
  color: var(--ink-inv);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-10);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.legal-links {
  display: flex;
  gap: 32px;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base);
}

.legal-links a:hover {
  color: var(--white-a50);
}


/* ════════════════════════════════════════════════════════
   ROOM DETAILS PAGE
════════════════════════════════════════════════════════ */
.details-hero {
  height: clamp(400px, 60vh, 700px);
  position: relative;
  overflow: hidden;
}

.details-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.details-hero:hover .details-hero-img {
  transform: scale(1.05);
}

.details-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.20) 55%,
      rgba(0, 0, 0, 0.40) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px var(--container-px);
  color: var(--ink-inv);
  z-index: var(--z-base);
}

.details-hero-inner {
  max-width: 1400px;
  width: 100%;
}

.details-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--white-a70);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-5);
  transition: color var(--t-base);
}

.details-breadcrumb:hover {
  color: var(--gold);
}

.details-breadcrumb .ph {
  font-size: 14px;
}

.details-room-name {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.details-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.details-room-price {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
}

.details-room-price strong {
  font-weight: 700;
}

.details-hero-divider {
  color: var(--white-a50);
  font-size: 16px;
}

.details-room-view {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-a70);
  font-weight: 400;
}

/* Main content grid */
.details-main {
  background: var(--ink-inv);
  padding: clamp(60px, 10vw, 120px) var(--container-px);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.details-intro {
  margin-bottom: var(--space-12);
}

.details-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin: var(--space-3) 0 var(--space-6);
  color: var(--ink);
}

.details-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-12);
  max-width: 800px;
}

/* Room stats */
.details-stats {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
  padding: var(--space-6) var(--space-8) var(--space-6) 0;
  border-top: 2px solid var(--glass-border);
  margin-right: var(--space-8);
  transition: border-color var(--t-base);
}

.stat-box:hover {
  border-top-color: var(--gold);
}

.stat-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: var(--space-2);
  opacity: 0.8;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

/* Amenities */
.amenities-container {
  margin-bottom: var(--space-20);
}

.amenities-header {
  margin-bottom: var(--space-10);
}

.amenities-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.amenities-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: 32px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 20px 24px;
  background: var(--ink-inv);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: border-color var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}

.amenity-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.amenity-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.amenity-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* Booking sidebar */
.details-sidebar {
  position: sticky;
  top: 140px;
  height: fit-content;
}

.booking-card {
  background: var(--ink-inv);
  border: 1px solid var(--glass-border);
  padding: 40px 36px;
}

.booking-room-name {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.booking-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.booking-price-block {
  text-align: center;
  padding: var(--space-6) 0;
}

.booking-from {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.booking-price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.booking-per-night {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-divider {
  height: 1px;
  background: var(--glass-border);
  margin: var(--space-5) 0;
}

.booking-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.booking-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 13px;
  color: var(--text-muted);
}

.booking-meta-item .ph {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.booking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-4);
}

.booking-note .ph {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Room gallery */
.details-gallery {
  padding: clamp(60px, 10vw, 120px) var(--container-px);
  background: var(--surface);
  border-top: 1px solid var(--black-a05);
}

.gallery-header-new {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.room-gallery-section {
  padding: var(--section-padding) var(--container-px);
  background: var(--surface);
}

.room-gallery-swiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  overflow: visible;
}

.room-gallery-slide {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #f0f0f0;
  user-select: none;
}

.room-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}

.room-gallery-slide:hover img {
  transform: scale(1.05);
}

.room-gallery-swiper .swiper-button-next,
.room-gallery-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--white-a90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.3s ease, transform 0.3s ease;
}

.room-gallery-swiper .swiper-button-next:hover,
.room-gallery-swiper .swiper-button-prev:hover {
  background: #fff;
  transform: scale(1.08);
}

.room-gallery-swiper .swiper-button-next::after,
.room-gallery-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}

.room-gallery-swiper .swiper-pagination {
  position: static;
  margin-top: 20px;
}

.room-gallery-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.3);
  opacity: 1;
  transition: background 0.3s ease, width 0.3s ease;
  border-radius: 4px;
}

.room-gallery-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
}


/* ════════════════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  z-index: var(--z-lightbox);
  inset: 0;
  background: var(--black-a95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--ink-inv);
  font-size: 40px;
  cursor: pointer;
  z-index: 1;
  transition: color var(--t-base), transform var(--t-base);
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxScale var(--t-slow) var(--ease-out);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: var(--ink-inv);
  margin-top: var(--space-5);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--ink-inv);
  font-size: 60px;
  cursor: pointer;
  padding: 20px;
  z-index: var(--z-base);
  transition: color var(--t-base);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--gold);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}


/* ════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--ink-inv);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-menu);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: opacity var(--t-slow) var(--ease-out),
    visibility var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out),
    background var(--t-base),
    box-shadow var(--t-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.back-to-top .ph {
  font-size: 24px;
}


/* ════════════════════════════════════════════════════════
   ANIMATIONS & UTILITIES
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-reveal) var(--ease-out),
    transform var(--t-reveal) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightboxScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .room-card-large {
    flex-direction: column;
  }

  .room-image-pane {
    min-height: 245px;
    order: -1;
    flex-basis: auto;
  }

  .room-info-pane {
    flex-basis: auto;
    padding: 22px 16px;
  }

  .room-gallery-swiper {
    padding: 0 36px;
  }

  .room-gallery-slide {
    aspect-ratio: 16 / 9;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .details-sidebar {
    position: static;
    max-width: 100%;
    margin: 0;
  }

  .booking-card {
    padding: 32px 24px;
  }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Force mobile nav style */
  nav {
    padding: 12px var(--container-px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  nav .nav-links,
  nav .nav-btn {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .nav-hamburger span {
    background: var(--text-main);
  }

  .nav-logo {
    color: var(--text-main);
  }

  /* Features */
  .features-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .feature-item {
    flex: 1 1 240px;
    border-left: none;
  }

  /* Welcome visuals */
  .welcome-visuals {
    min-height: auto;
    flex-basis: 100%;
  }
  
  .welcome-content {
    flex-basis: 100%;
  }

  .welcome-image-single {
    width: 100%;
  }

/* Bento gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
    gap: 16px;
  }

  .gallery-cell {
    height: 100%;
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }

  .gallery-cell-large {
    grid-row: 1 / 2 !important;
  }

  .gallery-cell-tall {
    grid-row: 2 / 3 !important;
  }

  .gallery-cell-wide {
    grid-row: 3 / 4 !important;
  }

  /* Collection slider arrows move below card on mobile */
  .collection-slider {
    padding-bottom: 72px;
    overflow: hidden;
  }

  .collection-slider .slider-arrow {
    width: 40px;
    height: 40px;
    top: auto !important;
    bottom: 16px !important;
    transform: none !important;
  }

  .collection-slider .slider-arrow.prev {
    left: calc(50% - 48px) !important;
  }

  .collection-slider .slider-arrow.next {
    right: calc(50% - 48px) !important;
  }

  .collection-slider .slider-slide {
    padding: 0 16px;
  }
  
  .corporate-discount {
    padding: 60px 20px;
  }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — 768px
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .story-link {
    padding: 15px;
    justify-content: center;
    width: 100%;
  }

  /* Details hero meta — hide separator dot, let items wrap */
  .details-hero-meta {
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
  }

  .details-hero-divider {
    display: none;
  }

  .room-gallery-swiper {
    padding: 0 20px;
  }

  .room-gallery-slide {
    aspect-ratio: 4 / 3;
  }

  .room-gallery-swiper .swiper-button-next,
  .room-gallery-swiper .swiper-button-prev {
    display: none;
  }

  .details-stats {
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-6);
  }

  .stat-box {
    flex: 1 1 calc(50% - 12px);
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 40px;
    padding: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .room-details-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .room-actions-large {
    flex-direction: column;
    gap: 12px;
  }

  .room-actions-large .btn-book-now,
  .room-actions-large .btn-view-room {
    width: 100%;
    justify-content: center;
  }

  /* Welcome visuals: single image on mobile */
  .welcome-visuals {
    min-height: auto;
  }

  .welcome-image-single {
    width: 100%;
  }

  .welcome-image-single::after {
    display: none;
  }

/* Features: single column */
  .feature-item {
    flex: 1 1 100%;
    border-left: none;
    border-top: 1px solid var(--glass-border);
  }

  .feature-item:first-child {
    border-top: none;
  }
  
  .tariff-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }
  
  .tariff-dash {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-5);
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    gap: var(--space-4);
  }
}
/* ════════════════════════════════════════════════════════
   DINING TIMINGS CARD
════════════════════════════════════════════════════════ */
.timings-card-new {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 60px);
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.timings-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.timings-header-new {
  text-align: center;
  margin-bottom: 40px;
}

.timings-header-new .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.timings-header-new h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  font-weight: 400;
}

.timings-list-new {
  display: flex;
  flex-direction: column;
}

.timing-row-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--t-base) var(--ease-out);
}

.timing-row-new:last-child {
  border-bottom: none;
}

.timing-row-new:hover {
  transform: translateX(10px);
}

.timing-info-new {
  display: flex;
  align-items: center;
  gap: 20px;
}

.timing-icon-new {
  width: 52px;
  height: 52px;
  background: var(--ink-inv);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--glass-border);
}

.timing-label-new {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--ink);
}

.timing-value-new {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--gold-muted);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .timing-row-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .timing-value-new {
    align-self: flex-start;
  }
  .timing-row-new:hover {
    transform: none;
  }
}
