/* ============================================================
   VILLA SHANTA — Rustic Luxury Stylesheet
   Palette: Espresso · Terracotta · Gold · Warm Cream · Linen
   ============================================================ */

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

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

:root {
  --espresso:    #1A120B;
  --dark-brown:  #2D1E14;
  --terracotta:  #C17A54;
  --brick:       #A0522D;
  --gold:        #C9963A;
  --gold-light:  #E8B86D;
  --gold-pale:   #F5E6C8;
  --cream:       #FAF5EC;
  --linen:       #F0E8D8;
  --stone:       #9E8B7A;
  --white:       #FFFEF9;
  --shadow:      0 4px 30px rgba(26,18,11,0.15);
  --shadow-lg:   0 12px 50px rgba(26,18,11,0.25);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  all 0.35s ease;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--espresso);
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section     { padding: 96px 0; }
.section-dark { background: var(--espresso); }
.section-linen { background: var(--linen); }
.text-center  { text-align: center; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 600;
}
.section-title-light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 580px;
  line-height: 1.8;
}
.section-sub-light { color: rgba(255,255,255,0.65); }

.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 20px 0 36px;
}
.gold-rule-center { margin: 20px auto 36px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso);
  box-shadow: 0 4px 24px rgba(201,150,58,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,150,58,0.55); }
.btn-outline-cream {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--espresso);
  color: var(--espresso);
}
.btn-outline-dark:hover { background: var(--espresso); color: var(--white); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-2px); background: #128C7E; }
.btn-espresso { background: var(--espresso); color: var(--white); }
.btn-espresso:hover { background: var(--dark-brown); transform: translateY(-2px); }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: all 0.4s ease;
  background: rgba(26,18,11,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled, .navbar.solid {
  background: rgba(26,18,11,0.97);
  backdrop-filter: none;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
  border-bottom-color: transparent;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
/* Logo — text fallback (swap img src when logo file is available) */
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo img.logo-img { height: 52px; width: auto; object-fit: contain; display: block; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)); }
.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; color: var(--white); letter-spacing: 0.5px;
  line-height: 1.1;
}
.nav-logo .logo-sub {
  font-size: 0.58rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.82);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold-light); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
/* Book Now button — shared class for all pages */
.nav-cta, .nav-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--espresso) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-size: 0.72rem !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 14px rgba(201,150,58,0.35);
}
.nav-cta::after, .nav-book::after { display: none !important; }
.nav-cta:hover, .nav-book:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(201,150,58,0.5) !important;
  color: var(--espresso) !important;
}
/* Hamburger / nav-toggle — unified */
.hamburger, .nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: transparent; border: none;
}
.hamburger span, .nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}

/* ---- Page Hero ---- */
.page-hero {
  height: 420px; position: relative; display: flex;
  align-items: flex-end; overflow: hidden; margin-top: 76px;
}
.page-hero img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,11,0.9) 0%, rgba(26,18,11,0.25) 65%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 48px 28px; max-width: 1160px; margin: 0 auto; width: 100%;
}
.page-hero-content h1 {
  color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300; margin-bottom: 8px;
}
.page-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-content p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 12px; letter-spacing: 1px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ---- Space Cards ---- */
.space-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.space-card img { height: 360px; transition: transform 0.6s ease; }
.space-card:hover img { transform: scale(1.05); }
.space-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,11,0.88) 0%, rgba(26,18,11,0.05) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.space-card-overlay h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; font-weight: 400; }
.space-card-overlay p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.space-card-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }

/* ---- Amenity Tiles ---- */
.amenity-grid-new { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.amenity-tile {
  background: var(--dark-brown); padding: 44px 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.amenity-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  opacity: 0; transition: var(--transition);
}
.amenity-tile:hover::before { opacity: 0.12; }
.amenity-tile .icon { font-size: 2rem; margin-bottom: 16px; position: relative; z-index: 1; }
.amenity-tile h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; position: relative; z-index: 1; }
.amenity-tile p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; position: relative; z-index: 1; }

/* ---- Stats ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 52px 0;
}
.stat-item { border-right: 1px solid rgba(255,255,255,0.08); padding: 0 24px; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: var(--gold-light); display: block; line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 2.5px; text-transform: uppercase; }

/* ---- Testimonials ---- */
.testimonial-new {
  background: var(--white); padding: 40px 36px; border-radius: var(--radius);
  position: relative; box-shadow: var(--shadow);
}
.testimonial-new::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 8rem;
  color: var(--gold-pale); position: absolute; top: -10px; left: 20px; line-height: 1;
}
.testimonial-new .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-new p { font-size: 1rem; color: var(--stone); font-style: italic; line-height: 1.85; margin-bottom: 24px; }
.reviewer-wrap { display: flex; align-items: center; gap: 12px; }
.reviewer-initials {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 0.9rem; flex-shrink: 0;
}
.reviewer-info .name { font-weight: 600; font-size: 0.9rem; color: var(--espresso); }
.reviewer-info .date { font-size: 0.78rem; color: var(--stone); }

/* ---- Pricing ---- */
.pricing-card-new {
  background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  border-top: 3px solid transparent; transition: var(--transition);
}
.pricing-card-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.pricing-card-new.featured { background: var(--espresso); border-top-color: var(--gold); transform: scale(1.03); }
.pricing-card-new.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: 20px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 40px; transform: rotate(45deg);
}
.pricing-card-new h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-card-new.featured h3 { color: var(--white); }
.price-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300;
  color: var(--terracotta); display: block; line-height: 1; margin: 16px 0 4px;
}
.pricing-card-new.featured .price-amount { color: var(--gold-light); }
.price-note { font-size: 0.8rem; color: var(--stone); margin-bottom: 28px; }
.pricing-card-new.featured .price-note { color: rgba(255,255,255,0.45); }
.price-list { margin-bottom: 32px; }
.price-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem; display: flex; align-items: center; gap: 10px; color: var(--stone);
}
.pricing-card-new.featured .price-list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); }
.price-list .ck { color: var(--gold); font-weight: 700; }

/* ---- Gallery ---- */
.masonry { columns: 3; column-gap: 12px; }
.masonry-item { break-inside: avoid; margin-bottom: 12px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,11,0.85), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.masonry-overlay p { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* ---- Video ---- */
.video-hero { position: relative; overflow: hidden; height: 560px; display: flex; align-items: center; justify-content: center; }
.video-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-hero-overlay { position: absolute; inset: 0; background: rgba(26,18,11,0.6); }
.video-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.video-hero-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; margin-bottom: 16px; }
.video-hero-content h2 em { font-style: italic; color: var(--gold-light); }
.video-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; }

.video-thumb { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.video-thumb video { width: 100%; height: 280px; object-fit: cover; display: block; }
.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(26,18,11,0.35); transition: var(--transition);
}
.video-thumb:hover .video-play-btn { background: rgba(26,18,11,0.55); }
.play-circle {
  width: 64px; height: 64px; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: var(--transition);
}
.video-thumb:hover .play-circle { transform: scale(1.1); background: rgba(201,150,58,0.4); border-color: var(--gold-light); }

/* ---- CTA Image Section ---- */
.cta-image-section { position: relative; overflow: hidden; padding: 120px 0; }
.cta-image-section img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(26,18,11,0.72); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 12px; }
.cta-content h2 em { font-style: italic; color: var(--gold-light); }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact-info-card { background: var(--espresso); border-radius: var(--radius-lg); padding: 48px 40px; }
.contact-row { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-row:last-child { border-bottom: none; }
.contact-icon-box {
  width: 48px; height: 48px; flex-shrink: 0; background: rgba(255,255,255,0.06);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-row-text h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-row-text p, .contact-row-text a { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-row-text a:hover { color: var(--gold-light); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 440px; box-shadow: var(--shadow-lg); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
.footer { background: var(--espresso); padding: 72px 0 32px; }
/* Unified grid — works for both index (4-col) and inner pages (3-col) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 56px;
}
/* Inner-page footer uses .footer-brand / .footer-links / .footer-contact */
.footer-brand, .footer-links, .footer-contact { }
.footer-brand p, .footer-contact p {
  font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.9;
}
.footer-brand p a, .footer-contact p a {
  color: rgba(255,255,255,0.55); transition: var(--transition);
}
.footer-brand p a:hover, .footer-contact p a:hover { color: var(--gold-light); }
.footer-links h5, .footer-contact h5 {
  font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links ul li, .footer-contact ul li { margin-bottom: 12px; }
.footer-links ul a, .footer-contact ul a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition);
}
.footer-links ul a:hover, .footer-contact ul a:hover { color: var(--gold-light); }
/* Index footer classes */
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 4px; display: block; }
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 18px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.9; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-icon, .footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
}
.social-icon:hover, .footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-col h5 { font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--gold-light); }

/* ---- WhatsApp Float ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  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,0.5); font-size: 1.4rem; color: var(--white); transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---- Lightbox ---- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(15,10,6,0.96); align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: var(--radius); object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 1.8rem; cursor: pointer; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lb-close:hover { background: var(--gold); }
.lb-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--white); font-size: 0.9rem; background: rgba(26,18,11,0.6); padding: 8px 20px; border-radius: 50px; white-space: nowrap; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid rgba(26,18,11,0.1); padding: 20px 0; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { color: var(--terracotta); }
.faq-arrow { transition: var(--transition); font-style: normal; font-family: 'Jost', sans-serif; font-size: 1rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-ans { max-height: 200px; }
.faq-ans p { padding-top: 14px; color: var(--stone); font-size: 0.95rem; line-height: 1.85; }

/* ---- Note Box ---- */
.note-box { background: var(--gold-pale); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 24px; }
.note-box p { font-size: 0.9rem; color: var(--dark-brown); }

/* ============================================================  RESPONSIVE  ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .amenity-grid-new { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 0; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: rgba(26,18,11,0.98); backdrop-filter: blur(12px); padding: 24px 28px 32px; gap: 22px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .hamburger, .nav-toggle { display: flex; }
  .video-hero { height: 400px; }
  .pricing-card-new.featured { transform: scale(1); }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .masonry { columns: 1; }
  .amenity-grid-new { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .page-hero { height: 320px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Story Section */
.story-section { padding: 6rem 0; background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.story-text p { color: var(--espresso); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1rem; }
.story-images { position: relative; }
.story-img-main { position: relative; z-index: 1; }
.story-img-main img { height: 500px; object-fit: cover; }
.story-img-accent {
  position: absolute;
  bottom: -2.5rem; right: -2rem;
  width: 55%;
  border: 6px solid var(--cream);
  z-index: 2;
}
.story-img-accent img { height: 220px; object-fit: cover; }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-accent { position: relative; bottom: auto; right: auto; width: 60%; margin-top: 1rem; border: none; }
}

/* Ethos Strip */
.ethos-strip { padding: 5rem 0; background: var(--linen); }
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ethos-item { text-align: center; padding: 2rem 1rem; }
.ethos-icon { font-size: 2.5rem; margin-bottom: 1rem; display:flex; align-items:center; justify-content:center; }
.ethos-icon img { width: 64px; height: 64px; object-fit: contain; }
.ethos-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--espresso);
  margin-bottom: 0.75rem;
}
.ethos-item p { font-size: 0.88rem; color: #5a4a3a; line-height: 1.7; }
@media (max-width: 800px) { .ethos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ethos-grid { grid-template-columns: 1fr; } }

/* Video Section (page) */
.video-section-page { padding: 5rem 0; background: var(--cream); }
.video-section-page.dark-bg { background: var(--espresso); }
.video-embed-wrap {
  margin-top: 2.5rem;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.video-embed-wrap video {
  width: 100%;
  display: block;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  background: var(--espresso);
}

/* Who Section */
.who-section { padding: 5rem 0; background: var(--linen); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.who-card { background: var(--cream); overflow: hidden; }
.who-card img { height: 220px; object-fit: cover; transition: transform 0.5s; }
.who-card:hover img { transform: scale(1.04); }
.who-card-body { padding: 1.5rem; }
.who-card-body h4 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.who-card-body p { font-size: 0.88rem; color: #5a4a3a; line-height: 1.7; }
@media (max-width: 800px) { .who-grid { grid-template-columns: 1fr; } }

/* Location Section */
.location-section { padding: 5rem 0; background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.location-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.25rem; }
.location-text p { color: var(--espresso); line-height: 1.85; margin-bottom: 1.5rem; }
.location-list { padding: 0; }
.location-list li {
  display: flex; gap: 0.75rem; align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(26,18,11,0.08);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--espresso);
}
.location-list li span { font-size: 1.1rem; }
@media (max-width: 800px) { .location-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AMENITIES PAGE
   ============================================================ */

.amenities-intro { padding: 5rem 0 2rem; background: var(--cream); }

.amenity-feature { padding: 4rem 0 6rem; background: var(--cream); }
.amenity-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.amenity-feature-row:last-child { margin-bottom: 0; }
.amenity-feature-row.reverse { direction: rtl; }
.amenity-feature-row.reverse > * { direction: ltr; }
.amenity-feature-img img { height: 400px; object-fit: cover; }
.amenity-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}
.amenity-feature-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.amenity-feature-text p { color: #5a4a3a; line-height: 1.85; margin-bottom: 1.25rem; }
.amenity-feature-list {
  padding: 0;
}
.amenity-feature-list li {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--espresso);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26,18,11,0.08);
  padding-left: 1.25rem;
  position: relative;
}
.amenity-feature-list li::before {
  content: '—';
  color: var(--terracotta);
  position: absolute;
  left: 0;
}
@media (max-width: 800px) {
  .amenity-feature-row,
  .amenity-feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
}

/* Amenity list tiles */
.amenity-list-section { padding: 6rem 0; background: var(--cream); }
.amenity-tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(201,150,58,0.22);
  border-left: 1px solid rgba(201,150,58,0.22);
}
.amenity-tile-item {
  background: transparent;
  padding: 2.8rem 1.2rem 2.2rem;
  text-align: center;
  border-right: 1px solid rgba(201,150,58,0.22);
  border-bottom: 1px solid rgba(201,150,58,0.22);
  transition: background 0.3s ease;
  cursor: default;
}
.amenity-tile-item:hover { background: rgba(201,150,58,0.06); }
.amenity-tile-item span { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.amenity-tile-item img {
  width: 54px; height: 54px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.1rem;
  opacity: 0.82;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.amenity-tile-item:hover img { opacity: 1; transform: translateY(-3px); }
.amenity-tile-item p {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: var(--espresso);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 1100px) { .amenity-tiles-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .amenity-tiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .amenity-tiles-grid { grid-template-columns: repeat(2, 1fr); } }
/* Bedroom mosaic grid for amenities page */
.bedroom-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.bedroom-mosaic img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.bedroom-mosaic img:hover { transform: scale(1.03); }
.bedroom-mosaic .bedroom-wide {
  grid-column: span 2;
}
.bedroom-mosaic .bedroom-wide img { height: 240px; }

/* ============================================================
   SHARED / UTILITY
   ============================================================ */

.section-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #5a4a3a;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--terracotta); color: #fff; }


/* ============================================================
   PREMIUM REFINEMENTS — rounded corners, softer shadows
   ============================================================ */

/* Unified button rounding for page-specific button classes */
.btn-gold, .btn-outline-light, .btn-outline-light,
.btn-pricing, .btn-submit, .btn-wa-primary, .btn-wa-large,
.wa-hero .btn-wa-primary, .filter-btn {
  border-radius: 50px !important;
}
.btn-outline-light {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s; text-decoration: none; border-radius: 50px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Card and box softening */
.contact-block { border-radius: 12px; }
.contact-info-card { border-radius: 16px; }
/* .amenity-tile-item border-radius handled by premium grid style */
.direction-card { border-radius: 12px; }
.who-card { border-radius: 12px; overflow: hidden; }
.addon-card { border-radius: 10px; }
.wa-hero { border-radius: 16px; }
.pricing-card { border-radius: 16px !important; }
.video-thumb { border-radius: 12px; }
.masonry-item { border-radius: 8px; }
.testimonial-new { border-radius: 14px; }

/* Page hero — add gentle vignette bottom fade */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(26,18,11,0.18));
  pointer-events: none;
}

/* Intro image badge — rounder */
.intro-img-badge { border-radius: 16px !important; }

/* Rating bar — rounder */
.rating-bar { border-radius: 16px !important; }

/* Feature bar item — softer on hover */
.feature-item { border-radius: 0; }

/* Responsive footer fix for inner pages */
@media (max-width: 768px) {
  .footer-grid[style] { grid-template-columns: 1fr !important; }
}

/* ============================================================
   PREMIUM UPGRADE PASS — Logo, Amenities, Buttons, Footer
   ============================================================ */

/* --- NAVBAR LOGO — bigger, refined --- */
.nav-logo { align-items: flex-start; justify-content: center; }
.nav-logo img.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transition: opacity 0.2s;
}
.nav-logo img.logo-img:hover { opacity: 0.88; }

/* --- FOOTER LOGO --- */
.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
/* hide the now-redundant text sub if img replaces it */
.footer-logo-sub { display: none; }

/* --- AMENITIES — premium image treatment --- */
.amenity-feature-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(26,18,11,0.22), 0 4px 16px rgba(26,18,11,0.12);
}
.amenity-feature-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.amenity-feature-img:hover img { transform: scale(1.03); }

/* Decorative corner accent on every amenity image */
.amenity-feature-img::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(201,150,58,0.25);
  pointer-events: none;
  z-index: 2;
}
/* Subtle gradient overlay bottom */
.amenity-feature-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26,18,11,0.35), transparent);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Amenity tag — pill style, no sharp border */
.amenity-tag {
  border-radius: 50px !important;
  background: rgba(193,122,84,0.08);
  font-size: 0.68rem;
  padding: 0.28rem 0.9rem;
}

/* Amenity row — more breathing room */
.amenity-feature-row { gap: 5rem; margin-bottom: 7rem; }

/* Amenity tile grid — premium grid style (cards removed, see above) */

/* --- BUTTONS — premium outline style for "Enquire for Pricing" --- */
/* Override btn-outline-light to look more luxurious */
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.65) !important;
  color: rgba(255,255,255,0.92) !important;
  padding: 0.9rem 2.2rem !important;
  letter-spacing: 0.14em;
  font-size: 0.78rem !important;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.04);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(255,255,255,0.9) !important;
  color: #fff !important;
}

/* Intro section alternating feature row spacing */
.amenity-feature-section .amenity-feature-row:nth-child(odd) .amenity-feature-img {
  box-shadow: 0 20px 60px rgba(26,18,11,0.25), 0 4px 16px rgba(26,18,11,0.12);
}

/* Amenities list section — gap removed (uses hairline border grid) */

/* Amenities intro section */
.amenities-intro .section-sub { max-width: 620px; }

/* Mobile: full-width images */
@media (max-width: 800px) {
  .amenity-feature-img img { height: 280px; }
  .amenity-feature-img::before { inset: 8px; }
  .amenity-feature-row { gap: 2.5rem; margin-bottom: 4rem; }
}

/* Round the plain btn-outline (used in about.html maps button) */
.btn-outline {
  border-radius: 50px !important;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.6rem;
}

/* Footer logo sub — hidden when img is present */
.footer-logo-sub { display: none; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
#bookingModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#bookingModal.open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 7, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  scrollbar-width: thin;
  scrollbar-color: var(--linen) transparent;
}
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--linen); border-radius: 4px; }

.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(26, 18, 11, 0.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}
.modal-header p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--stone);
  margin: 0;
}
.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--stone);
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.modal-close-btn:hover { color: var(--espresso); }

/* Form inside modal */
#bookingForm {
  padding: 2rem 2.5rem 2.5rem;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group > label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(26, 18, 11, 0.15);
  border-radius: 10px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--espresso);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="email"]:focus {
  border-color: var(--gold);
}
.form-group input[type="text"]::placeholder,
.form-group input[type="number"]::placeholder {
  color: var(--stone);
  opacity: 0.7;
}

/* Flexible checkbox row */
.flex-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--stone);
  cursor: pointer;
}
.flex-check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Guest grid */
.guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.guest-grid-sub-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}

/* Radio cards */
.radio-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.radio-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.radio-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1rem;
  border: 1.5px solid rgba(26, 18, 11, 0.15);
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.84rem;
  color: var(--espresso);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.radio-card input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.radio-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* Modal submit button */
.modal-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  gap: 0.6rem;
}
.modal-note {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .modal-header { padding: 1.75rem 1.5rem 1.25rem; }
  #bookingForm { padding: 1.5rem 1.5rem 2rem; }
  .radio-grid-3 { grid-template-columns: 1fr 1fr; }
  .modal-box { border-radius: 14px; }
}

/* ============================================================
   VILLA SHANTA — PREMIUM ANIMATIONS & LUXURY POLISH
   ============================================================ */

/* ---- Page Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), visibility 0.8s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  animation: pl-rise 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.preloader-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.4rem;
  animation: pl-rise 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s both;
  opacity: 0;
}
.preloader-bar {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 2rem;
  overflow: hidden;
}
.preloader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: pl-progress 1.4s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
@keyframes pl-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pl-progress {
  from { width: 0; }
  to   { width: 100%; }
}

/* ---- Scroll Reveal base classes ---- */
.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-65px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(65px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(30px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.visible { opacity: 1; transform: none; }

/* Stagger delays */
.stagger-1 { transition-delay: 0.07s !important; }
.stagger-2 { transition-delay: 0.15s !important; }
.stagger-3 { transition-delay: 0.23s !important; }
.stagger-4 { transition-delay: 0.31s !important; }
.stagger-5 { transition-delay: 0.39s !important; }
.stagger-6 { transition-delay: 0.47s !important; }

/* ---- Custom Cursor (desktop only) ---- */
.cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.3s ease;
  will-change: left, top;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(201,150,58,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.3s ease, opacity 0.3s ease;
  will-change: left, top;
}
.cursor-hover .cursor-dot { width: 10px; height: 10px; background: var(--gold-light); }
.cursor-hover .cursor-ring { width: 54px; height: 54px; border-color: rgba(201,150,58,0.75); }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ---- Premium Button Shimmer ---- */
.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -120%;
  width: 55%;
  background: linear-gradient(105deg, transparent 15%, rgba(255,255,255,0.28) 50%, transparent 85%);
  transform: skewX(-20deg);
  transition: left 0.75s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.btn-gold:hover::before { left: 165%; }

/* ---- Typography Upgrades ---- */
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.04 !important;
  text-shadow: 0 4px 50px rgba(0,0,0,0.35) !important;
}
.hero em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem) !important;
  letter-spacing: 0.03em !important;
  line-height: 1.85 !important;
}
.eyebrow {
  letter-spacing: 0.22em !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
}
h2 {
  letter-spacing: -0.02em;
}
h3 { letter-spacing: -0.015em; }

/* ---- Premium CTA section heading ---- */
.cta-image-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
  letter-spacing: -0.02em !important;
}

/* ---- Premium card hover lifts ---- */
.space-card,
.exp-card,
.amenity-tile {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease !important;
  will-change: transform;
}
.space-card:hover  { transform: translateY(-14px) !important; box-shadow: 0 36px 80px rgba(26,18,11,0.24) !important; }
.exp-card:hover    { transform: translateY(-10px) !important; box-shadow: 0 24px 60px rgba(26,18,11,0.18) !important; }
.amenity-tile:hover{ transform: translateY(-10px) !important; box-shadow: 0 24px 60px rgba(26,18,11,0.18) !important; }

.testimonial-new {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease !important;
}
.testimonial-new:hover { transform: translateY(-10px) !important; box-shadow: 0 28px 70px rgba(26,18,11,0.14) !important; }

/* ---- Gallery item premium hover ---- */
.masonry-item {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease !important;
  will-change: transform;
}
.masonry-item:hover { transform: scale(1.03) !important; box-shadow: 0 24px 60px rgba(0,0,0,0.3) !important; z-index: 2 !important; }

/* ---- Amenity feature image ---- */
.amenity-feature-img {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1) !important;
  will-change: transform;
}
.amenity-feature-img:hover { transform: scale(1.015) !important; }

/* ---- Page wipe transition ---- */
.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--espresso);
  transform: translateY(105%);
  transition: transform 0.6s cubic-bezier(0.76,0,0.24,1);
  pointer-events: none;
}
.page-wipe.wipe-enter { transform: translateY(0); }
.page-wipe.wipe-exit  {
  transform: translateY(-105%);
  transition: transform 0.55s cubic-bezier(0.76,0,0.24,1) 0.05s;
}

/* ---- Scroll-to-scroll cue on hero ---- */
.hero-scroll-cue {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: cue-in 1s ease 2.5s forwards;
}
.hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: cue-pulse 2s ease-in-out 2.5s infinite;
}
.hero-scroll-cue p {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-lr;
}
@media (max-width: 768px) { .hero-scroll-cue { display: none; } }
@keyframes cue-in { from { opacity:0 } to { opacity:1 } }
@keyframes cue-pulse {
  0%,100% { transform: scaleY(1); opacity: 0.7; }
  50%      { transform: scaleY(0.7); opacity: 1; }
}

/* ---- Smart navbar transition ---- */
.navbar {
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              background 0.35s ease,
              box-shadow 0.35s ease !important;
}
.navbar.nav-hidden { transform: translateY(-110%) !important; }

/* ---- Feature bar icons premium ---- */
.feature-item {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease !important;
}
.feature-item:hover { transform: translateY(-4px) !important; }

/* ---- Intro image premium ---- */
.intro-img-wrap img {
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) !important;
}
.intro-img-wrap:hover img { transform: scale(1.04) !important; }

/* ---- Page hero image premium ---- */
.page-hero {
  transition: transform 0.1s linear;
}

/* ---- Number stat counters ---- */
.stat-number,
.about-stat-num,
.exp-number {
  font-variant-numeric: tabular-nums;
}

/* ---- Section gold rule ---- */
.gold-rule {
  display: block;
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  margin: 0.8rem auto 1.8rem;
  border-radius: 2px;
}
.gold-rule-left {
  display: block;
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  margin: 0.8rem 0 1.8rem;
  border-radius: 2px;
}

/* ---- Refined section headings via pseudo ---- */
.section-heading-center {
  text-align: center;
}
.section-heading-center::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ---- Premium footer hover ---- */
.footer a {
  transition: color 0.25s ease, letter-spacing 0.25s ease !important;
}
.footer a:hover { letter-spacing: 0.04em; }

/* ---- Image clip-path reveal ---- */
.img-reveal {
  overflow: hidden;
}
.img-reveal img {
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1) !important;
}
.img-reveal:hover img { transform: scale(1.06) !important; }

/* ---- Body cursor override for custom cursor pages ---- */
.has-custom-cursor * { cursor: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transition: none !important; opacity: 1 !important; transform: none !important; }
  .preloader-progress, .preloader-wordmark, .preloader-sub { animation: none !important; }
  .hero-scroll-cue { animation: none !important; opacity: 0.7 !important; }
}
