/* ═══════════════════════════════════════════════════════
   GLORYBAGH VILLA — UDAIPUR
   Color Palette: Rinova-inspired
   Deep Olive · Warm Cream · Gold · Ivory
═══════════════════════════════════════════════════════ */

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

:root {
  --deep:      #0a0904;
  --olive:     #13110a;
  --olive-mid: #1e1c11;
  --gold:      #c9a84c;
  --gold-light:#e2c97e;
  --gold-dim:  #8a6f2e;
  --cream:     #f5f0e8;
  --ivory:     #faf7f2;
  --text-light:#d4c9a8;
  --text-dim:  #7a6e52;
  --white:     #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Cormorant Garamond', serif;

  --nav-h: 76px;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

* { max-width: 100%; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}



/* ═══════════════════════════════════════════════
   SKELETON LOADER
═══════════════════════════════════════════════ */
.skeleton-wrapper {
  position: fixed; inset: 0; background: var(--deep); z-index: 8000;
  display: flex; flex-direction: column; overflow: hidden;
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.skeleton-wrapper.fade-out { opacity: 0; transform: scale(1.03); pointer-events: none; }

@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}
.sk-nav {
  height: var(--nav-h); background: var(--olive);
  border-bottom: 1px solid var(--olive-mid);
}
.sk-hero {
  flex: 1; background: var(--olive-mid);
  display: flex; align-items: center; justify-content: center;
}
.sk-title-block { display: flex; flex-direction: column; gap: 16px; width: min(420px, 80vw); }
.sk-line {
  height: 18px; border-radius: 4px;
  background: linear-gradient(90deg, var(--olive) 25%, var(--olive-mid) 50%, var(--olive) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite;
}
.sk-line.long   { width: 100%; height: 48px; }
.sk-line.medium { width: 70%; }
.sk-line.short  { width: 45%; }
.sk-gallery {
  height: 180px; display: flex; gap: 12px; padding: 16px;
  background: var(--deep);
}
.sk-card {
  flex: 1; border-radius: 8px;
  background: linear-gradient(90deg, var(--olive) 25%, var(--olive-mid) 50%, var(--olive) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite;
}
.sk-card:nth-child(2) { animation-delay: 0.2s; }
.sk-card:nth-child(3) { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   VISIBILITY
═══════════════════════════════════════════════ */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: transparent;
  transition: background 0.5s var(--ease-luxury),
              backdrop-filter 0.5s, border-bottom 0.5s;
}
#navbar.scrolled {
  background: rgba(28, 26, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* Logo */
.logo-placeholder {
  display: flex; flex-direction: column; line-height: 1.1;
  min-width: 140px;
  /* LOGO AREA — replace with <img> when you have a logo */
}
.logo-text {
  font-family: var(--font-display); font-size: 1.9rem;
  font-weight: 500; color: var(--gold); letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.22em; color: var(--text-light); font-weight: 400;
}

/* Desktop links */
.nav-links {
  list-style: none; display: flex; gap: 40px; align-items: center;
}
.nav-link {
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none; font-weight: 400;
  position: relative; padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.4s, opacity 0.3s;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 75vw; max-width: 320px;
  height: 100vh; z-index: 600;
  background: var(--olive); padding: 80px 40px 40px;
  display: flex; flex-direction: column;
  transition: right 0.5s var(--ease-luxury);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.mobile-drawer a {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--cream); text-decoration: none; font-style: italic;
  transition: color 0.3s;
}
.mobile-drawer a:hover { color: var(--gold); }
.drawer-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--text-light);
  font-size: 1.1rem; cursor: pointer;
  transition: color 0.3s;
}
.drawer-close:hover { color: var(--gold); }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 590;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.visible { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Replace with a real background image of the villa */
  background: linear-gradient(135deg, #1c1a0f 0%, #2b2710 40%, #1a1508 100%);
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 780px; padding: 0 clamp(16px, 5vw, 24px); width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.05; color: var(--cream);
  letter-spacing: 0.02em; margin-bottom: 18px; word-break: break-word;
}
.hero-location {
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px;
}
.location-dot { color: var(--gold); margin-right: 8px; font-size: 0.6rem; }
.hero-tagline {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 300; font-style: italic; line-height: 1.7;
  color: var(--text-light); max-width: 520px; margin: 0 auto 44px;
}
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-block; padding: 14px 40px;
  background: var(--gold); color: var(--deep);
  font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block; padding: 14px 40px;
  background: transparent; color: var(--cream);
  font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  border: 1px solid rgba(201,168,76,0.5);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim);
  animation: pulse-hint 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}
@keyframes pulse-hint { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s;  }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s;  }

/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
.section-header {
  text-align: center; margin-bottom: 64px; padding: 0 clamp(16px, 5vw, 24px);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body); font-size: 0.62rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  position: relative; padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: ''; position: absolute; top: 50%;
  width: 40px; height: 1px; background: var(--gold-dim);
}
.section-tag::before { right: 100%; transform: translateX(16px); }
.section-tag::after  { left: 100%;  transform: translateX(-16px); }

.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text-dim); max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   AMENITIES — CARD AUTO-SCROLL STRIP
═══════════════════════════════════════════════ */
.amenities-section {
  padding: clamp(80px, 10vw, 120px) 0 clamp(80px, 10vw, 120px);
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 40%, rgba(201,168,76,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 70%, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Scroll outer — clips + fades edges ── */
.am-scroll-outer {
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.am-scroll-outer:active { cursor: grabbing; }

.am-scroll-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 12px 0 20px;
  will-change: transform;
  pointer-events: none;
}

/* cards need pointer-events for hover */
.am-card { pointer-events: all; }

/* ── Individual amenity card ── */
.am-card {
  flex-shrink: 0;
  width: clamp(220px, 24vw, 300px);
  background: var(--olive);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.4s var(--ease-luxury),
              transform 0.4s var(--ease-luxury),
              box-shadow 0.4s var(--ease-luxury);
}

/* Gold corner accent */
.am-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 32px solid rgba(201,168,76,0.15);
  border-left: 32px solid transparent;
  transition: border-width 0.4s, border-top-color 0.4s;
}

/* Sweep shine */
.am-card::before {
  content: '';
  position: absolute;
  top: -100%; left: -60%;
  width: 55%; height: 300%;
  background: linear-gradient(105deg, transparent 30%, rgba(201,168,76,0.06) 50%, transparent 70%);
  transform: skewX(-15deg);
  transition: left 0.6s var(--ease-luxury);
  pointer-events: none;
}

.am-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}
.am-card:hover::before { left: 120%; }
.am-card:hover::after {
  border-top-width: 48px;
  border-left-width: 48px;
  border-top-color: rgba(201,168,76,0.35);
}

/* Icon */
.am-card-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: border-color 0.4s, background 0.4s;
}
.am-card-icon i {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-luxury), color 0.3s;
}
.am-card:hover .am-card-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.am-card:hover .am-card-icon i {
  transform: scale(1.2) rotate(-8deg);
  color: var(--gold-light);
}

/* Title */
.am-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Gold rule under title */
.am-card h3::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold-dim);
  margin-top: 10px;
  transition: width 0.4s var(--ease-luxury), background 0.3s;
}
.am-card:hover h3::after {
  width: 52px;
  background: var(--gold);
}

/* Description */
.am-card p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.7;
}



/* ═══════════════════════════════════════════════
   ABOUT US
═══════════════════════════════════════════════ */
.about-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--deep);
}

/* Full-bleed background villa image with dark overlay */
.about-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/villa-6.jpeg.jpeg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  filter: brightness(0.22) saturate(0.7);
  z-index: 0;
  transition: filter 0.6s;
}

/* White card container — centred over the image */
.about-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 100px auto 100px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 6vw, 72px);
  background: rgba(10, 9, 4, 0.82);
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6),
              inset 0 1px 0 rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Top-left & bottom-right corner accents */
.about-container::before,
.about-container::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  border-color: var(--gold-dim);
  border-style: solid;
  pointer-events: none;
  transition: border-color 0.4s;
}
.about-container::before {
  top: -1px; left: -1px;
  border-width: 1px 0 0 1px;
}
.about-container::after {
  bottom: -1px; right: -1px;
  border-width: 0 1px 1px 0;
}
.about-section:hover .about-container::before,
.about-section:hover .about-container::after {
  border-color: var(--gold);
}

/* Tag */
.about-tag-wrap {
  margin-bottom: 20px;
}

/* Heading */
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.about-heading em {
  font-style: italic;
  color: var(--gold);
}

/* Body paragraphs */
.about-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 20px;
}

/* Ornament divider */
.about-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 32px;
  width: 100%;
  max-width: 320px;
}
.about-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.about-divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.about-divider-gem {
  color: var(--gold);
  font-size: 0.5rem;
  letter-spacing: 0;
}

/* Social + Book row */
.about-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.about-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* Book Now pill button */
.about-book-btn {
  width: auto;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--deep);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 500;
}
.about-book-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

@media (max-width: 768px) {
  .about-container {
    margin: 60px 16px;
    padding: 40px 24px;
  }
  .about-bg-img { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .about-container { margin: 40px 12px; }
  .about-social-btn { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════
   THUMBNAIL CAROUSEL GALLERY
═══════════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0 120px;
  background: var(--deep);
  overflow: hidden;
}
.gallery-section .section-header {
  padding: 0 clamp(16px, 5vw, 48px);
  margin-bottom: 60px;
}

/* Outer wrapper */
.tc-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Main image viewport ── */
.tc-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--olive-mid);
  border: 1px solid rgba(201,168,76,0.15);
  cursor: pointer;
}

.tc-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s var(--ease-luxury);
}

.tc-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-luxury);
}

.tc-slide:hover img {
  transform: scale(1.03);
}

/* Caption overlay */
.tc-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(10,9,4,0.75) 0%, transparent 100%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.tc-main:hover .tc-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Slide counter */
.tc-counter {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(10,9,4,0.55);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
}

/* Arrow buttons */
.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28,26,15,0.75);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  font-size: 0.9rem;
}
.tc-arrow:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.tc-arrow-left  { left: 16px; }
.tc-arrow-right { right: 16px; }

/* ── Thumbnail strip ── */
.tc-thumbs-wrap {
  margin-top: 12px;
  overflow: hidden;
  position: relative;
}

.tc-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-behavior: smooth;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tc-thumbs::-webkit-scrollbar { display: none; }

/* Each thumbnail */
.tc-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 60px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-luxury),
              transform 0.3s var(--ease-luxury),
              opacity 0.3s;
  opacity: 0.55;
}

.tc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-luxury);
}

.tc-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.tc-thumb:hover img { transform: scale(1.08); }

.tc-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10,9,4,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-luxury);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-luxury);
  object-fit: contain;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: none; color: var(--gold-light);
  font-size: 1.8rem; cursor: pointer; font-family: var(--font-display);
  transition: transform 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-caption {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-style: italic; font-size: 1rem;
  color: var(--text-light); letter-spacing: 0.08em;
  white-space: nowrap;
}



/* ═══════════════════════════════════════════════
   INQUIRY SECTION
═══════════════════════════════════════════════ */
.inquiry-section {
  padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 48px);
  background: var(--olive);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px); max-width: 1200px; margin: 0 auto;
  align-items: start;
}

.inquiry-left h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 24px;
}
.inquiry-left h2 em { font-style: italic; color: var(--gold); }
.inquiry-left p {
  font-size: 0.85rem; color: var(--text-dim); line-height: 1.85; margin-bottom: 36px;
}
.inquiry-info { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.info-item i { color: var(--gold); margin-top: 3px; font-size: 0.9rem; }
.info-item span { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* Form */
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream); padding: 14px 18px;
  font-family: var(--font-body); font-size: 0.85rem;
  outline: none; width: 100%; resize: none;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-group select option { background: var(--olive); }
.form-group textarea { height: 120px; }

.form-submit {
  margin-top: 8px;
  background: var(--gold); color: var(--deep);
  border: none; padding: 16px 36px;
  font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.form-submit:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none;
}
.form-msg {
  font-size: 0.8rem; padding: 12px 16px; border-radius: 2px;
  display: none;
}
.form-msg.success { display: block; background: rgba(50,180,80,0.15); color: #7eff9e; border: 1px solid rgba(50,180,80,0.3); }
.form-msg.error   { display: block; background: rgba(255,60,60,0.12); color: #ff9e9e; border: 1px solid rgba(255,60,60,0.3); }

/* ═══════════════════════════════════════════════
   CONTACT / FOOTER
═══════════════════════════════════════════════ */
#contact {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 48px) clamp(32px, 5vw, 48px);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 60px);
}

.contact-brand .brand-name {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 300; color: var(--gold); margin-bottom: 8px; letter-spacing: 0.04em;
}
.contact-brand .brand-loc {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 20px;
}
.contact-brand p {
  font-size: 0.82rem; color: var(--text-dim); line-height: 1.8; max-width: 280px;
}

.contact-col h4 {
  font-family: var(--font-body); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.contact-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-col a {
  font-size: 0.82rem; color: var(--text-dim); text-decoration: none;
  transition: color 0.3s;
}
.contact-col a:hover { color: var(--gold); }

.contact-reach p {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; color: var(--text-dim); margin-bottom: 12px;
}
.contact-reach i { color: var(--gold); margin-top: 2px; font-size: 0.85rem; }

.contact-social {
  display: flex; gap: 14px; margin-top: 20px;
}
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); text-decoration: none; font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.contact-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px 48px; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.contact-bottom p {
  font-size: 0.72rem; color: var(--text-dim);
  letter-spacing: 0.06em;
}
.contact-bottom span { color: var(--gold-dim); }

/* ═══════════════════════════════════════════════
   HORIZONTAL RULE ORNAMENT
═══════════════════════════════════════════════ */
.ornament {
  display: flex; align-items: center;
  gap: 16px; justify-content: center; padding: 60px 0 0;
  color: var(--gold-dim); font-size: 0.7rem;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.ornament::after { transform: scaleX(-1); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */






/* ═══════════════════════════════════════════════
   RESPONSIVE — complete mobile-first overrides
   Tested breakpoints: 320px / 375px / 390px /
   412px / 480px / 768px / 1024px
═══════════════════════════════════════════════ */

/* Tablet landscape + small desktop */
@media (max-width: 1024px) {
  .inquiry-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet portrait + large phones */
@media (max-width: 768px) {
  /* Nav */
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero-section { min-height: 100svh; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.8rem); }
  .hero-tagline { font-size: 1rem; padding: 0 8px; }
  .hero-eyebrow { font-size: 0.65rem; }

  /* Marquee */
  .marquee-track span { font-size: 0.6rem; }

  /* Section header */
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Amenities */
  .amenities-section { padding: 60px 0 72px; }
  .am-card { width: clamp(200px, 60vw, 260px); padding: 28px 20px 24px; }

  /* Gallery carousel */
  .gallery-section { padding: 60px 0 72px; }
  .gallery-section .section-header { padding: 0 16px; margin-bottom: 40px; }
  .tc-wrap { padding: 0 16px; }
  .tc-arrow { width: 36px; height: 36px; font-size: 0.75rem; }
  .tc-arrow-left  { left: 6px; }
  .tc-arrow-right { right: 6px; }
  .tc-thumb { width: 68px; height: 48px; }

  /* Inquiry */
  .inquiry-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 16px;
  }
  .inquiry-left h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .form-row { grid-template-columns: 1fr; gap: 16px; }

  /* Contact footer */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 16px 32px;
  }
}

/* Small phones: 480px and below */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .btn-gold, .btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 13px 24px;
  }
  .hero-tagline { font-size: 0.92rem; }

  /* Section tag ornament lines shorter */
  .section-tag::before,
  .section-tag::after { width: 16px; }

  /* Amenities small */
  .am-card { width: clamp(180px, 72vw, 230px); padding: 24px 18px 20px; }
  .am-card h3 { font-size: 1.2rem; }

  /* Gallery carousel small */
  .tc-thumb { width: 56px; height: 40px; }

  /* Form */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; } /* prevent iOS zoom */

  /* Footer */
  .contact-brand .brand-name { font-size: 1.8rem; }
  .float-contact-wrap { bottom: 20px; left: 14px; }
  .float-toggle { width: 44px; height: 44px; }
  .float-action { padding: 9px 14px 9px 12px; font-size: 0.68rem; }
}

/* Very small: 360px and below */
@media (max-width: 360px) {
  .hero-title { font-size: clamp(1.8rem, 12vw, 2.6rem); }
  .logo-text  { font-size: 1.5rem; }
  .section-title { font-size: clamp(1.6rem, 9vw, 2.2rem); }
  .amenity-card { padding: 24px 16px 20px; }
  .btn-gold, .btn-outline { max-width: 100%; }
}

/* ═══════════════════════════════════════════════
   FLOATING CONTACT BUTTON (bottom-left)
═══════════════════════════════════════════════ */
.float-contact-wrap {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* The two action buttons — hidden by default */
.float-action {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--olive);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--cream);
  text-decoration: none;
  padding: 10px 18px 10px 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  /* start hidden, slide up */
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-luxury),
              transform 0.35s var(--ease-luxury),
              background 0.25s, border-color 0.25s;
}
.float-action i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.float-action.call-btn      i { color: var(--gold); }
.float-action.whatsapp-btn  i { color: #25d366; }

.float-action:hover {
  background: var(--olive-mid);
  border-color: var(--gold);
  color: var(--gold);
}
.float-action.whatsapp-btn:hover { border-color: #25d366; color: #25d366; }

/* Visible state when menu is open */
.float-contact-wrap.open .float-action {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.float-contact-wrap.open .float-action:nth-child(1) { transition-delay: 0.05s; }
.float-contact-wrap.open .float-action:nth-child(2) { transition-delay: 0.12s; }

/* Main toggle button */
.float-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(201,168,76,0.4);
  transition: background 0.3s, transform 0.4s var(--ease-luxury), box-shadow 0.3s;
  position: relative;
}
.float-toggle:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 36px rgba(201,168,76,0.55);
  transform: scale(1.08);
}
/* Icon inside toggle */
.float-toggle .ft-icon {
  font-size: 1.2rem;
  color: var(--deep);
  transition: transform 0.4s var(--ease-luxury), opacity 0.3s;
}
.float-toggle .ft-icon-close {
  position: absolute;
  font-size: 1rem;
  color: var(--deep);
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: transform 0.4s var(--ease-luxury), opacity 0.3s;
}
.float-contact-wrap.open .float-toggle .ft-icon       { opacity: 0; transform: rotate(90deg) scale(0.6); }
.float-contact-wrap.open .float-toggle .ft-icon-close { opacity: 1; transform: rotate(0deg) scale(1); }

/* Pulse ring on toggle */
.float-toggle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}

@media (max-width: 480px) {
  .float-contact-wrap { bottom: 24px; left: 18px; }
  .float-toggle { width: 46px; height: 46px; }
}
