/* =========================================
   SRI SAI SADAN — LUXURY DESIGN SYSTEM
   ========================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  --navy:       #12243A;
  --gold:       #C8A45A;
  --gold-light: #EAD8B3;
  --ivory:      #FAF7F2;
  --dark:       #222222;
  --grey-light: #f7f3ed;
  --white:      #FFFFFF;

  --font-head:  'Century Gothic', 'URW Gothic', 'Trebuchet MS', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --section-pad: clamp(48px, 6vw, 90px);
  --container:   1320px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
/* scroll-behavior handled by Lenis JS */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--dark);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,164,90,0.12), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(234,216,179,0.16), transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(200,164,90,0.10), transparent 50%);
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { border:none; background:none; }

/* ---- SMOOTH SCROLL ---- */
html.lenis { height:auto; }
.lenis.lenis-smooth { scroll-behavior:auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior:contain; }

/* ==========================================
   CUSTOM CURSOR — disabled, using system cursor
   ========================================== */
.cursor-outer,
.cursor-inner { display: none; }

/* ==========================================
   PRELOADER
   ========================================== */
#preloader {
  position: fixed; inset:0;
  background: var(--navy);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity .8s var(--ease-luxury), visibility .8s;
}
#preloader.hidden { opacity:0; visibility:hidden; }

.preloader-logo {
  opacity:0;
  transform: translateY(20px);
  animation: preloaderLogoIn .9s var(--ease-luxury) .3s forwards;
}
.preloader-logo img { height:80px; filter: brightness(10); }

.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderLineIn 1.2s var(--ease-luxury) .8s forwards;
}
.preloader-text {
  font-family: var(--font-head);
  font-size: clamp(11px,1.5vw,13px);
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity:0;
  animation: preloaderLogoIn .8s var(--ease-luxury) 1.2s forwards;
}

@keyframes preloaderLogoIn {
  to { opacity:1; transform:translateY(0); }
}
@keyframes preloaderLineIn {
  to { width:200px; }
}

/* ==========================================
   TYPOGRAPHY SYSTEM
   ========================================== */
.luxury-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}
.luxury-eyebrow::before,
.luxury-eyebrow::after {
  content:'';
  flex: 0 0 40px;
  height:1px;
  background: var(--gold);
  opacity:.6;
}
.luxury-eyebrow.left::before { display:none; }
.luxury-eyebrow.right::after { display:none; }

.luxury-h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .01em;
}
.luxury-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.luxury-h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.3;
}
.luxury-h4 {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
}
.luxury-body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.85;
  color: #555;
}
.luxury-body-sm {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.7;
  color: #777;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease-luxury);
  cursor: none;
}
.btn-luxury::before {
  content:'';
  position:absolute;
  inset:0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-luxury);
}
.btn-luxury:hover { color: var(--navy); }
.btn-luxury:hover::before { transform:scaleX(1); }
.btn-luxury span { position:relative; z-index:1; }
.btn-luxury .btn-arrow {
  position:relative;
  z-index:1;
  width:24px;
  height:1px;
  background: currentColor;
  transition: width .3s var(--ease-luxury);
}
.btn-luxury .btn-arrow::after {
  content:'';
  position:absolute;
  right:0; top:-3px;
  width:7px; height:7px;
  border-right:1px solid currentColor;
  border-top:1px solid currentColor;
  transform:rotate(45deg);
}
.btn-luxury:hover .btn-arrow { width:36px; }

.btn-luxury-solid {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-luxury-solid::before { background: var(--navy); }
.btn-luxury-solid:hover { color: var(--gold); }

.btn-luxury-dark {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-luxury-dark::before { background: var(--navy); }
.btn-luxury-dark:hover { color: var(--ivory); }

/* ==========================================
   NAVIGATION
   ========================================== */
#main-nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 9000;
  padding: 0;
  background: linear-gradient(to bottom, rgba(10,16,28,.92) 0%, rgba(10,16,28,.7) 70%, rgba(10,16,28,.35) 100%);
  transition: all .6s var(--ease-luxury);
}
#main-nav.scrolled {
  background: rgba(25,30,61,1);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(200,164,90,.15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height .4s var(--ease-luxury);
}


.nav-logo img {

  transition: height .4s, filter .4s;
}


.nav-menu { display:flex; align-items:center; gap:0; }
.nav-item { position:relative; }
.nav-link {
  display: block;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content:'';
  position:absolute;
  bottom:8px; left:18px; right:18px;
  height:1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-luxury);
}
.nav-link:hover::after,
.nav-item.active .nav-link::after { transform:scaleX(1); }
.nav-link:hover { color:var(--gold); }

/* Dropdown */
.nav-dropdown {
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:280px;
  background: rgba(18,36,58,0.97);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity:0;
  visibility:hidden;
  transform: translateY(-10px);
  transition: all .35s var(--ease-luxury);
}
.nav-item:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown li a {
  display:block;
  padding:10px 24px;
  font-size:12px;
  letter-spacing:.1em;
  color:rgba(255,255,255,.75);
  transition:color .2s, padding .2s;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.nav-dropdown li:last-child a { border-bottom:none; }
.nav-dropdown li a:hover { color:var(--gold); padding-left:32px; }

.nav-book-btn {
  display: inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size:11px;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  border:none;
  transition: background .3s, color .3s, transform .2s var(--ease-spring);
  margin-left:24px;
}
.nav-book-btn:hover { background:var(--navy); color:var(--gold); transform:scale(1.03); }

/* Hamburger for mobile */
.nav-hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  cursor:pointer;
}
.nav-hamburger span {
  display:block;
  width:26px; height:2px;
  background: var(--white);
  transition: all .3s var(--ease-luxury);
}
#main-nav.scrolled .nav-hamburger span { background:var(--white); }

/* WhatsApp Float */
.wa-float {
  position:fixed;
  bottom:100px; right:28px;
  z-index:8000;
  width:56px; height:56px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(37,211,102,.5); }
.wa-float svg { width:28px; height:28px; fill:#fff; }

/* Scroll to top */
.scroll-top-btn {
  position:fixed;
  bottom:168px; right:28px;
  z-index:8000;
  width:52px; height:52px;
  background:var(--navy);
  color:var(--gold);
  border:1px solid rgba(200,164,90,.4);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition: opacity .35s var(--ease-luxury), transform .35s var(--ease-luxury), visibility .35s, background .3s, color .3s;
}
.scroll-top-btn.is-visible { opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top-btn:hover { background:var(--gold); color:var(--navy); }
.scroll-top-btn svg { width:20px; height:20px; }
@media (max-width:768px) { .scroll-top-btn { bottom:160px; right:20px; width:46px; height:46px; } }

/* Book now float */
.book-float {
  position:fixed;
  bottom:28px; right:28px;
  z-index:8000;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.book-float a {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 10px;
  background:var(--gold);
  color:var(--navy);
  font-size:10px;
  font-weight:600;
  letter-spacing:.25em;
  text-transform:uppercase;
  transition:background .3s, color .3s;
}
.book-float a:hover { background:var(--navy); color:var(--gold); }

/* ==========================================
   HERO
   ========================================== */
#hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
}

.hero-slides { position:absolute; inset:0; }
.hero-slide {
  position:absolute; inset:0;
  opacity:0;
  transition: opacity 1.4s ease;
  will-change:opacity;
}
.hero-slide.active { opacity:1; }
.hero-slide img {
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.08);
  transition: transform 8s var(--ease-luxury);
}
.hero-slide.active img { transform:scale(1); }

.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(
    135deg,
    rgba(18,36,58,.5) 0%,
    rgba(18,36,58,.2) 50%,
    rgba(18,36,58,.35) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 130px clamp(24px, 6vw, 100px) 90px;
}
.hero-card {
  background: rgba(18,36,58,.4);
  border: 1px solid rgba(200,164,90,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 48px);
  max-width: 600px;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px);
  animation: heroTagIn .8s var(--ease-luxury) 2s forwards;
  display: flex; align-items: center; gap: 16px;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .7;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-top: 14px;
  max-width: 820px;
  letter-spacing: .01em;
}
.hero-h1 .line {
  display: block;
  overflow: hidden;
}
.hero-h1 .word {
  display: inline-block;
  transform: translateY(110%);
  animation: heroWordIn .9s var(--ease-luxury) forwards;
}
.hero-h1 .line:nth-child(1) .word { animation-delay: 2.1s; }
.hero-h1 .line:nth-child(2) .word { animation-delay: 2.25s; }
.hero-h1 .line:nth-child(3) .word { animation-delay: 2.4s; }

.hero-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,.7);
  max-width: 460px;
  line-height: 1.7;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroTagIn .8s var(--ease-luxury) 2.6s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 26px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroTagIn .8s var(--ease-luxury) 2.8s forwards;
}

.hero-scroll-ind {
  position:absolute;
  bottom:48px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,.6);
  font-size:10px; letter-spacing:.3em; text-transform:uppercase;
  animation:heroTagIn .8s var(--ease-luxury) 3.2s both;
}
.hero-scroll-ind .scroll-line {
  width:1px; height:60px;
  background:linear-gradient(to bottom, var(--gold), transparent);
  animation:scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.5; transform:scaleY(1); }
  50% { opacity:1; transform:scaleY(.7); }
}

/* Hero slide arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,164,90,.4);
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease-luxury);
  z-index: 10;
  padding: 0;
}
.hero-arrow svg { width: 48px; height: 48px; display: block; }
.hero-arrow-prev { left: clamp(16px, 3vw, 48px); }
.hero-arrow-next { right: clamp(16px, 3vw, 48px); }
.hero-arrow:hover {
  background: rgba(200,164,90,.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow-prev:hover { transform: translateY(-50%) scale(1.08) translateX(-3px); }
.hero-arrow-next:hover { transform: translateY(-50%) scale(1.08) translateX(3px); }

/* Hero slide counter */
.hero-counter {
  position:absolute;
  right:clamp(24px,4vw,60px);
  bottom:48px;
  display:flex; align-items:center; gap:12px;
  color:rgba(255,255,255,.5);
  font-size:12px; letter-spacing:.1em;
  font-family:var(--font-head);
}
.hero-counter-current { font-size:28px; color:var(--gold); font-weight:300; }
.hero-counter-total { font-size:14px; }

/* Hero nav dots */
.hero-dots {
  display:flex; gap:8px;
  justify-content:center;
  margin-top: 22px;
}
.hero-dot {
  width:24px; height:2px;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:all .3s var(--ease-luxury);
}
.hero-dot.active { width:48px; background:var(--gold); }

@keyframes heroTagIn {
  to { opacity:1; transform:translateY(0); }
}
@keyframes heroWordIn {
  to { transform:translateY(0); }
}

/* ==========================================
   BOOKING BAR
   ========================================== */
.booking-bar {
  background: linear-gradient(135deg, #16304f 0%, var(--navy) 60%);
  padding: 0 40px;
  position:relative;
  z-index:100;
  margin-top:-30px;
}
.booking-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
 

  border:1px solid rgba(200,164,90,.25);

  overflow:visible;
}
.booking-field {
  flex:1;
  display:flex; align-items:center; gap:16px;
  padding:24px 28px;
  border-right:1px solid rgba(255,255,255,.08);
  transition:background .3s;
}
.booking-field:hover,
.booking-field:focus-within { background:rgba(200,164,90,.08); }
.booking-field:last-of-type { border-right:none; }
.booking-field-icon {
  flex:none;
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(200,164,90,.12);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.booking-field-icon svg { width:20px; height:20px; }
.booking-field-text {
  display:flex; flex-direction:column;
  gap:6px;
  min-width:0;
}
.booking-field label {
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
}
.booking-field input,
.booking-field select {
  background:none; border:none; outline:none;
  color:var(--white);
  font-family:var(--font-head);
  font-size:20px;
  font-weight:500;
  cursor:pointer;
  width:100%;
}
.booking-field input::placeholder { color:rgba(255,255,255,.4); }
.booking-field select option { background:var(--navy); color:var(--white); }
.booking-submit {
  display:flex; align-items:center; justify-content:center;
  padding:0 52px;
  background:var(--gold);
  color:var(--navy);
  font-size:13px; font-weight:700;
  letter-spacing:.22em; text-transform:uppercase;
  transition:background .3s, color .3s, transform .3s var(--ease-spring);
  white-space:nowrap;
  cursor:pointer;
  border:none;
}
.booking-submit:hover { background:#d4b06a; transform:scale(1.03); }
@media (max-width:900px) {
  .booking-bar { margin-top:0; padding:0 16px; }
  .booking-bar-inner { flex-wrap:wrap; border-radius:0; }
  .booking-field { flex:1 1 50%; border-bottom:1px solid rgba(255,255,255,.08); }
  .booking-submit { flex:1 1 100%; padding:20px; }
}

/* Flatpickr — luxury theme (light) */
.flatpickr-calendar {
  background:var(--ivory);
  box-shadow:0 20px 50px rgba(18,36,58,.18);
  border:1px solid rgba(200,164,90,.35);
  border-radius:8px;
  font-family:var(--font-body);
}
.flatpickr-calendar.arrowTop:before { border-bottom-color:rgba(200,164,90,.35); }
.flatpickr-calendar.arrowTop:after { border-bottom-color:var(--ivory); }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday { color:var(--navy); fill:var(--navy); font-family:var(--font-head); font-weight:600; }
.flatpickr-current-month input.cur-year { color:var(--navy); font-family:var(--font-head); font-weight:600; }
.flatpickr-current-month .flatpickr-monthDropdown-months option { background:var(--ivory); color:var(--navy); }
.flatpickr-day { color:var(--navy); font-weight:500; }
.flatpickr-day.flatpickr-disabled { color:rgba(18,36,58,.3); }
.flatpickr-day:hover { background:rgba(200,164,90,.2); border-color:transparent; color:var(--navy); }
.flatpickr-day.today { border-color:var(--gold); }
.flatpickr-day.selected,
.flatpickr-day.selected:hover { background:var(--gold); border-color:var(--gold); color:var(--navy); font-weight:700; }
.flatpickr-prev-month svg,
.flatpickr-next-month svg { fill:var(--navy); }
span.flatpickr-weekday { color:var(--navy); font-weight:600; opacity:.65; }

/* ==========================================
   SECTION WRAPPER
   ========================================== */
.section {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}
.section-narrow {
  max-width: var(--container);
  margin: 0 auto;
}
.section-center { text-align:center; }

/* Divider */
.luxury-divider {
  width:60px; height:1px;
  background:var(--gold);
  margin:28px auto;
}
.luxury-divider.left { margin-left:0; }

.tp-dottedoverlay {
  background-repeat: repeat;
  width: 100%;
  z-index: 1;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.59), rgba(255, 255, 255, 0));
  transition: all 0.5s;
}

/* ==========================================
   PAGE HERO — DIAMOND TITLE BADGE
   ========================================== */
.page-hero-diamond {
  position: relative;
  width: 210px; height: 210px;
  margin: -105px auto 50px;
  z-index: 5;
}
.page-hero-diamond::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 148px;
  height: 148px;
  background: var(--navy);
  transform: translate(-50%, -50%) rotate(45deg);
  outline-color: rgba(255, 255, 255, 0.5);
  outline-width: 10px;
  outline-style: solid;
}
.page-hero-diamond-inner {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 0 34px;
  text-align: center;
}
.page-hero-diamond-line { width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.page-hero-diamond-inner h1 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 480px) {
  .page-hero-diamond { width: 172px; height: 172px; margin: -86px auto 40px; }
  .page-hero-diamond::before { width: 122px; height: 122px; }
  .page-hero-diamond-inner { padding: 0 24px; gap: 8px; }
  .page-hero-diamond-inner h1 { font-size: 11px; }
}

/* ==========================================
   ABOUT / PHILOSOPHY
   ========================================== */
.about-section { background:var(--ivory); overflow:hidden; }

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  max-width:var(--container);
  margin:0 auto;
}
.about-images {
  position:relative;
  aspect-ratio:4/5;
}
.about-img-main {
  width:80%;
  aspect-ratio:3/4;
  object-fit:cover;
  position:relative;
  z-index:2;
}
.about-img-accent {
  position:absolute;
  width:55%;
  aspect-ratio:1;
  object-fit:cover;
  bottom:-8%;
  right:-4%;
  z-index:3;
  border:8px solid var(--ivory);
}
.about-img-frame {
  position:absolute;
  top:8%; right:12%;
  width:70%; height:90%;
  border:1px solid var(--gold);
  z-index:1;
  transform:translate(16px,16px);
  pointer-events:none;
}

.about-text-col { padding-left:20px; }
.about-quote {
  font-family:var(--font-head);
  font-size:clamp(22px,2.5vw,32px);
  font-weight:300;
  color:var(--navy);
  line-height:1.5;
  font-style:italic;
  padding:24px 0 24px 28px;
  border-left:2px solid var(--gold);
  margin:36px 0;
}
.about-stats {
  display:flex; gap:40px;
  margin-top:48px;
}
.about-stat-num {
  font-family:var(--font-head);
  font-size:clamp(40px,5vw,64px);
  font-weight:300;
  color:var(--navy);
  line-height:1;
}
.about-stat-label {
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#888;
  margin-top:6px;
}

/* ==========================================
   ROOMS / ACCOMMODATION
   ========================================== */
.rooms-section { background:var(--grey-light); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 clamp(16px, 4vw, 60px);
}

/* ---- reference-style room card ---- */
.room-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(18,36,58,.07);
  transition: transform .4s var(--ease-luxury), box-shadow .4s var(--ease-luxury);
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(18,36,58,.14);
}

/* image */
.room-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease-luxury);
}
.room-card:hover .room-card-img img { transform: scale(1.05); }

/* badge */
.room-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
}

/* body */
.room-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
}

.room-card-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.room-card-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.room-card-desc {
  font-size: 13px;
  color: rgba(18,36,58,.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* specs row */
.room-card-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}
.room-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(18,36,58,.65);
}
.room-card-specs svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* amenity pills */
.room-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-card-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(18,36,58,.65);
  border: 1px solid rgba(18,36,58,.15);
  border-radius: 50%;
  transition: border-color .2s, color .2s;
}
.room-card-pills svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.room-card:hover .room-card-pills span {
  border-color: rgba(200,164,90,.4);
  color: rgba(18,36,58,.8);
}

/* footer */
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(18,36,58,.08);
  gap: 12px;
}
.room-card-bestfor {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(18,36,58,.45);
  line-height: 1.5;
}
.room-card-bestfor em {
  font-style: normal;
  color: rgba(18,36,58,.65);
}

.room-card-book {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 12px 24px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .3s, transform .2s;
}
.room-card-book:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

/* Large rooms editorial */
.room-editorial {
  max-width:var(--container);
  margin:80px auto 0;
  display:flex;
  flex-direction:column;
  gap:80px;
}
.room-editorial-item {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.room-editorial-item:nth-child(even) .room-editorial-img { order:2; }
.room-editorial-item:nth-child(even) .room-editorial-text { order:1; }

.room-editorial-img {
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
}
.room-editorial-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .8s var(--ease-luxury);
}
.room-editorial-item:hover .room-editorial-img img { transform:scale(1.04); }
.room-editorial-img-badge {
  position:absolute;
  bottom:24px; left:24px;
  background:var(--gold);
  color:var(--navy);
  padding:8px 20px;
  font-size:10px; letter-spacing:.25em; text-transform:uppercase;
  font-weight:600;
}

.room-amenities-row {
  display:flex; flex-wrap:wrap; gap:16px 32px;
  margin:20px 0 28px;
}
.room-amenity {
  display:flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:#666;
}
.room-amenity i { color:var(--gold); font-size:14px; }

/* ==========================================
   FEATURES / AMENITIES
   ========================================== */
.features-section {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.features-section::after { display: none; }

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

.features-row-3 {
  display: contents;
}

.feature-item {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 16px;
  border: none;
   text-align: center;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s var(--ease-luxury);
}
.feature-item:hover {
  box-shadow: 0 8px 40px rgba(200,164,90,.18);
  transform: translateY(-5px);
}
.feature-item::before { display: none; }
.feature-item::after { display: none; }

/* icon box */
.feature-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 16px;
  /* background: rgba(200,164,90,.12); */
  border: none;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background .4s, transform .4s var(--ease-spring);
}
.feature-item:hover .feature-icon-wrap {
  /* background: rgba(200,164,90,.22); */
  transform: scale(1.08);
}

.feature-icon {
  width: 64px; height: 64px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(38%) saturate(600%) hue-rotate(5deg) brightness(85%);
  opacity: 1;
  transition: transform .3s var(--ease-spring);
}
.feature-item:hover .feature-icon { transform: scale(1.08); }

.feature-num { display: none; }

.feature-title {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--gold);
  line-height: 1.4;
  letter-spacing: .01em;
  margin-bottom: 8px;
}
.feature-sub {
  font-size: 13px;
  color: #888;
  margin-top: 0;
  line-height: 1.65;
}

/* ==========================================
   DINING
   ========================================== */
.dining-section { position:relative; overflow:hidden; padding:0; border-bottom: 1px solid transparent; }
.dining-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,90,.6), transparent);
  z-index: 3;
}

.dining-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
}
.dining-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dining-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.dining-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #0d1b2e 0%,
    #0d1b2e 34%,
    rgba(13,27,46,.82) 46%,
    rgba(13,27,46,0) 64%);
}
.dining-banner-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  color: var(--white);
  padding: clamp(56px,7vw,100px) clamp(28px,6vw,88px);
}
.dining-banner-content .luxury-body { max-width: 420px; }

@media (max-width: 900px) {
  .dining-banner { flex-direction: column; align-items: stretch; min-height: auto; }
  .dining-banner-media { position: relative; height: 300px; }
  .dining-banner-overlay { background: linear-gradient(180deg, rgba(13,27,46,0) 40%, #0d1b2e 100%); }
  .dining-banner-content { max-width: none; padding: 36px 24px 52px; background:#0d1b2e; }
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-section { background: var(--ivory); padding-bottom: var(--section-pad); }

.gallery-section-head {
  text-align: center;
  padding: 0 clamp(24px,5vw,80px);
  margin-bottom: 40px;
}
.gallery-section-head .luxury-h2 { color: var(--navy); }
.gallery-section-head .luxury-eyebrow { justify-content: center; color: var(--gold); }

/* Filter tabs */
.gallery-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 32px;
  border: 1px solid rgba(200,164,90,.3);
  display: inline-flex;
  border-radius: 0;
}
.gallery-tab {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(18,36,58,.75);
  background: transparent;
  border: 1px solid rgba(200,164,90,.5);
  padding: 12px 28px;
  cursor: pointer;
  transition: color .3s, background .3s;
  position: relative;
}
.gallery-tab:not(:last-child) { border-right: none; }
.gallery-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease-luxury);
}
.gallery-tab.active,
.gallery-tab:hover { color: var(--gold); background: rgba(200,164,90,.05); }
.gallery-tab.active::after { width: 100%; }

/* Editorial grid — matches reference layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px 320px;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
  align-items: stretch;
}

/* Item 1: large left, spans 2 rows */
.gallery-grid .gallery-item:nth-child(1) { grid-column: 1 !important; grid-row: 1 / 3 !important; }
/* Items 2–5: 2×2 on right */
.gallery-grid .gallery-item:nth-child(2) { grid-column: 2 !important; grid-row: 1 !important; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: 3 !important; grid-row: 1 !important; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: 2 !important; grid-row: 2 !important; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: 3 !important; grid-row: 2 !important; }
/* Item 6: large bottom-left, spans 2 cols */
.gallery-grid .gallery-item:nth-child(6) { grid-column: 1 / 3 !important; grid-row: 3 !important; }
/* Item 7: bottom right */
.gallery-grid .gallery-item:nth-child(7) { grid-column: 3 !important; grid-row: 3 !important; }
/* Hide extra items (homepage preview mosaic only) */
.gallery-grid .gallery-item:nth-child(n+8) { display: none; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  height: 100%;
  width: 100%;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease-luxury);
}
.gallery-item:hover img { transform: scale(1.08); }

/* Overlay — slides up from bottom */
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,36,58,.85) 0%, rgba(18,36,58,.1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease-luxury), transform .4s var(--ease-luxury);
}
.gallery-item:hover .gi-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gi-cat {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,164,90,.5);
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}
.gi-plus {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,164,90,.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: background .3s, transform .3s var(--ease-spring);
}
.gallery-item:hover .gi-plus {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

/* Full-page masonry gallery — hover zoom overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,36,58,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s var(--ease-luxury);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-zoom {
  width: 46px; height: 46px;
  transform: scale(.6);
  transition: transform .4s var(--ease-spring);
}
.gallery-item-zoom svg { width: 100%; height: 100%; }
.gallery-item:hover .gallery-item-zoom { transform: scale(1); }

/* Lightbox */
#lightbox {
  position:fixed; inset:0;
  background:rgba(0,0,0,.96);
  z-index:100000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
#lightbox.open { display:flex; }
#lightbox img {
  max-width:90vw; max-height:85vh;
  object-fit:contain;
  border:1px solid rgba(200,164,90,.2);
}
#lightbox-close {
  position:absolute;
  top:24px; right:32px;
  color:var(--gold);
  font-size:36px;
  cursor:pointer;
  line-height:1;
  transition:transform .2s var(--ease-spring);
}
#lightbox-close:hover { transform:rotate(90deg); }
#lightbox-prev, #lightbox-next {
  position:absolute;
  top:50%; transform:translateY(-50%);
  background:none; border:1px solid rgba(200,164,90,.3);
  color:var(--gold); font-size:22px;
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:border-color .2s, background .2s;
}
#lightbox-prev { left:32px; }
#lightbox-next { right:32px; }
#lightbox-prev:hover, #lightbox-next:hover { background:rgba(200,164,90,.1); border-color:var(--gold); }

/* ==========================================
   ATTRACTIONS
   ========================================== */
.attractions-section { background:var(--grey-light); }
.attractions-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  margin-top:60px;
  max-width:var(--container);
  margin-left:auto;
  margin-right:auto;
}
.attraction-card {
  background:var(--white);
  overflow:hidden;
  position:relative;
  border-radius: 12px;
}
.attraction-img {
  aspect-ratio:4/3;
  overflow:hidden;
}
.attraction-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .7s var(--ease-luxury);
}
.attraction-card:hover .attraction-img img { transform:scale(1.06); }
.attraction-body { padding:28px 28px 32px; }
.attraction-title {
  font-family:var(--font-head);
  font-size:22px; color:var(--navy);
  margin-bottom:12px;
}
.attraction-desc { font-size:14px; color:#666; line-height:1.75; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section { position:relative; background:var(--ivory); overflow:hidden; }

.testimonials-swiper-wrap { position:relative; }
.testimonial-leaf {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:110px; height:auto;
  opacity:.4;
  pointer-events:none;
}
.testimonial-leaf-left { left:calc(50% - 560px); }
.testimonial-leaf-right { right:calc(50% - 560px); }
@media (max-width:900px) { .testimonial-leaf { display:none; } }

.testimonial-eyebrow::before,
.testimonial-eyebrow::after { display:none; }
.testimonial-h2 { font-style:normal; color:var(--navy); }

.testimonials-swiper {
  margin-top:44px;
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
.testimonial-card {
  text-align:center;
  padding:clamp(40px,5vw,64px) clamp(32px,6vw,80px);
  background:var(--white);
  border:1px solid rgba(200,164,90,.2);
  box-shadow:0 30px 70px rgba(18,36,58,.07);
}
.testimonial-quote-icon {
  margin:0 auto 18px;
  color:var(--gold);
  font-family:var(--font-head);
  font-size:60px;
  line-height:.6;
  opacity:.85;
}
.testimonial-text {
  font-family:var(--font-body);
  font-size:clamp(15px,1.6vw,18px);
  color:#5c5c5c;
  font-style:normal;
  line-height:1.85;
  max-width:560px;
  margin:0 auto;
}
.testimonial-author {
  margin-top:32px;
  display:flex; align-items:center; justify-content:center; gap:14px;
}
.testimonial-avatar {
  width:48px; height:48px;
  flex-shrink:0;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--gold-light);
  border:2px solid rgba(200,164,90,.4);
  color:var(--navy);
  font-family:var(--font-head);
  font-weight:600;
  font-size:16px;
}
.testimonial-author-info { text-align:left; }
.testimonial-name {
  font-family:var(--font-body);
  font-size:14px; letter-spacing:normal; text-transform:none;
  font-weight:600;
  color:var(--navy);
}
.testimonial-origin { font-size:12px; color:#9a9a9a; margin-top:2px; }

.testimonials-section .swiper-pagination-bullet {
  width:8px; height:8px;
  background:transparent !important;
  border:1.5px solid rgba(200,164,90,.5);
  opacity:1 !important;
  margin:0 5px !important;
}
.testimonials-section .swiper-pagination-bullet-active {
  background:var(--gold) !important;
  border-color:var(--gold);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section { background:var(--ivory); }
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:80px;
  align-items:start;
  max-width:var(--container);
  margin:0 auto;
}
.contact-info { padding-top:8px; }
.contact-item {
  display:flex; gap:20px; align-items:flex-start;
  padding:24px 0;
  border-bottom:1px solid rgba(18,36,58,.08);
}
.contact-icon {
  width:44px; height:44px;
  border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  color:var(--gold);
  font-size:16px;
  transition:background .3s, color .3s;
}
.contact-item:hover .contact-icon { background:var(--gold); color:var(--white); }
.contact-label {
  font-size:10px; letter-spacing:.3em; text-transform:uppercase;
  color:var(--gold); margin-bottom:4px;
}
.contact-value {
  font-family:var(--font-body);
  font-size:15px; color:var(--navy);
}
.contact-map-wrap { aspect-ratio:4/3; overflow:hidden; }
.contact-map-wrap iframe { width:100%; height:100%; border:none; }

/* Contact form */
.contact-form { margin-top:48px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field {
  display:flex; flex-direction:column; gap:6px;
  margin-bottom:20px;
}
.form-field label {
  font-size:10px; letter-spacing:.25em; text-transform:uppercase;
  color:#888;
}
.form-field input,
.form-field textarea,
.form-field select {
  background:none;
  border:none;
  border-bottom:1px solid rgba(18,36,58,.2);
  outline:none;
  padding:10px 0;
  font-family:var(--font-body);
  font-size:15px;
  color:var(--dark);
  transition:border-color .3s;
}
.form-field input:focus,
.form-field textarea:focus { border-color:var(--gold); }
.form-field textarea { resize:none; height:100px; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #191e3d;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
footer::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  padding:80px clamp(24px,5vw,80px) 60px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:60px;
  max-width:var(--container);
  margin:0 auto;
}
.footer-brand .footer-logo { height:64px; margin-bottom:20px;}
.footer-tagline {
  font-family:var(--font-head);
  color:rgba(255,255,255,.75);
  font-size:18px; font-style:italic;
  color:rgba(255,255,255,.5);
  line-height:1.7;
  margin-bottom:28px;
}
.footer-social {
  display:flex; gap:14px;
}
.footer-social a {
  width:48px; height:48px;
  border:1px solid rgba(200,164,90,.35);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.5);
  font-size:14px;
  transition:border-color .3s, color .3s, background .3s;
}
.footer-social a { font-size:18px; }
.footer-social a:hover { border-color:var(--gold); color:var(--gold); background:rgba(200,164,90,.12); }

.footer-col-title {
    font-size: 22px;
    /* letter-spacing: .3em; */
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.footer-links li { margin-bottom:12px; }
.footer-links a {
  font-size:15px; color:rgba(255,255,255,.78);
  transition:color .2s, padding-left .2s;
  display:flex; align-items:center; gap:10px;
}
.footer-links a i {
  color:var(--gold); font-size:13px;
  width:16px; text-align:center; flex-shrink:0;
}
.footer-links a:hover { color:var(--gold); padding-left:4px; }
.footer-address {
  font-size:16px; color:rgba(255,255,255,.75); line-height:1.9;
}
.footer-contact-item {
  display:flex; align-items:center; gap:10px;
  font-size:15px; color:rgba(255,255,255,.78);
  margin-bottom:10px;
  transition:color .2s;
}
.footer-contact-item:hover { color:var(--gold); }
.footer-contact-item i { color:var(--gold); font-size:14px; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding:24px clamp(24px,5vw,80px);
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:rgba(255,255,255,.3);
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom { color:rgba(255,255,255,.65); }
.footer-bottom a { color:rgba(255,255,255,.65); transition:color .2s; }
.footer-bottom a:hover { color:var(--gold); }

/* Newsletter */
.newsletter-row {
  background:rgba(200,164,90,.07);
  border:1px solid rgba(200,164,90,.15);
  padding:32px 40px;
  display:flex;
  align-items:center;
  gap:40px;
  max-width:var(--container);
  margin:0 auto 60px;
  flex-wrap:wrap;
}
.newsletter-text {
  flex:1;
  font-family:var(--font-head);
  font-size:22px;
  font-weight:300;
  color:var(--white);
  min-width:200px;
}
.newsletter-form {
  display:flex; flex:2; min-width:280px;
  border-bottom:1px solid rgba(200,164,90,.4);
}
.newsletter-form input {
  flex:1;
  background:none; border:none; outline:none;
  padding:10px 0;
  color:var(--white); font-size:14px;
}
.newsletter-form input::placeholder { color:rgba(255,255,255,.35); }
.newsletter-form button {
  background:none; border:none;
  color:var(--gold); font-size:11px;
  letter-spacing:.25em; text-transform:uppercase;
  padding:10px 0 10px 20px;
  cursor:pointer;
  transition:opacity .2s;
}
.newsletter-form button:hover { opacity:.7; }

/* ==========================================
   AOS ANIMATIONS
   ========================================== */
[data-aos="luxury-up"] {
  opacity:0;
  transform:translateY(48px);
  transition:opacity .8s var(--ease-luxury), transform .8s var(--ease-luxury);
}
[data-aos="luxury-up"].aos-animate { opacity:1; transform:translateY(0); }

[data-aos="luxury-left"] {
  opacity:0;
  transform:translateX(-48px);
  transition:opacity .8s var(--ease-luxury), transform .8s var(--ease-luxury);
}
[data-aos="luxury-left"].aos-animate { opacity:1; transform:translateX(0); }

[data-aos="luxury-right"] {
  opacity:0;
  transform:translateX(48px);
  transition:opacity .8s var(--ease-luxury), transform .8s var(--ease-luxury);
}
[data-aos="luxury-right"].aos-animate { opacity:1; transform:translateX(0); }

[data-aos="luxury-fade"] {
  opacity:0;
  transition:opacity 1s var(--ease-luxury);
}
[data-aos="luxury-fade"].aos-animate { opacity:1; }

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */
.mobile-nav {
  position:fixed;
  inset:0;
  background:var(--navy);
  z-index:8999;
  display:flex;
  flex-direction:column;
  padding:120px 48px 60px;
  transform:translateX(100%);
  transition:transform .5s var(--ease-luxury);
}
.mobile-nav.open { transform:translateX(0); }
.mobile-nav-link {
  display:block;
  font-family:var(--font-head);
  font-size:clamp(28px,5vw,42px);
  color:var(--white);
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:color .2s, padding .2s;
}
.mobile-nav-link:hover { color:var(--gold); padding-left:8px; }
.mobile-nav-sub {
  padding:4px 0 4px 16px;
  display:none;
}
.mobile-nav-sub.open { display:block; }
.mobile-nav-sub a {
  display:block;
  font-size:clamp(16px,2.5vw,22px);
  color:rgba(255,255,255,.6);
  padding:8px 0;
  font-family:var(--font-head);
  transition:color .2s;
}
.mobile-nav-sub a:hover { color:var(--gold); }
.mobile-nav-close {
  position:absolute;
  top:28px; right:32px;
  color:var(--white);
  font-size:32px;
  cursor:pointer;
  line-height:1;
}
.mobile-nav-bottom {
  margin-top:auto;
  display:flex; gap:24px; flex-direction:column;
}
.mobile-contact-item {
  font-size:14px; color:rgba(255,255,255,.5);
}
.mobile-contact-item a { color:rgba(255,255,255,.7); }

/* Hamburger open state */
.nav-hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity:0; }
.nav-hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width:1200px) {
  .rooms-grid { grid-template-columns:repeat(2, 1fr); gap:16px; }
  .features-grid { grid-template-columns:repeat(3, 1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width:1024px) {
  .about-grid { grid-template-columns:1fr; gap:48px; }
  .about-images { max-width:500px; }
  .contact-grid { grid-template-columns:1fr; }
  .room-editorial-item { grid-template-columns:1fr; }
  .room-editorial-item:nth-child(even) .room-editorial-img,
  .room-editorial-item:nth-child(even) .room-editorial-text { order:unset; }
}
@media (max-width:768px) {
  .nav-menu, .nav-book-btn { display:none; }
  .nav-hamburger { display:flex; }
  .rooms-grid { grid-template-columns:1fr; }
  .features-grid { grid-template-columns:repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  .gallery-item.gi-wide { grid-column: span 2; }
  .attractions-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .booking-bar { display:none; }
  .hero-ctas { flex-direction:column; align-items:flex-start; }
  .about-stats { gap:24px; }
  .hero-dots, .hero-counter { display:none; }
  .form-row { grid-template-columns:1fr; }
  .newsletter-row { flex-direction:column; gap:20px; }
  .contact-grid { gap:40px; }
  #hero { height:auto; min-height:620px; }
  .hero-content { justify-content:flex-start; padding:110px clamp(20px,5vw,32px) 48px; }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(10,20,35,.88) 0%,
      rgba(10,20,35,.6) 40%,
      rgba(10,20,35,.2) 70%,
      rgba(10,20,35,0) 100%
    );
  }
  .hero-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    max-width: 100%;
  }
  .hero-tag, .hero-h1, .hero-sub { text-shadow: 0 2px 16px rgba(0,0,0,.6); }
}
@media (max-width:480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.gi-wide { grid-column: span 1; }
  .features-grid { grid-template-columns:1fr; }
}

/* ==========================================
   UTILITY
   ========================================== */
.overflow-hidden { overflow:hidden; }
.text-gold { color:var(--gold); }
.text-navy { color:var(--navy); }
.text-white { color:var(--white); }
.bg-ivory { background:var(--ivory); }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.mb-0 { margin-bottom:0; }
.d-flex { display:flex; }
.align-center { align-items:center; }
.gap-16 { gap:16px; }
.text-center { text-align:center; }

/* sticky book button mobile */
.sticky-book-mobile {
  display:none;
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:8500;
  background:var(--gold);
  color:var(--navy);
  text-align:center;
  padding:16px;
  font-size:12px; font-weight:600; letter-spacing:.25em; text-transform:uppercase;
}
@media (max-width:768px) { .sticky-book-mobile { display:block; } }
