
:root {
  --gold: #B88A2C;
  --gold-soft: #DCBE7B;
  --gold-deep: #8C6512;
  --saffron: #C0531A;
  --saffron-soft: #E8A77B;
  --crimson: #9C1B30;
  --indigo: #2A3A6B;
  --teal: #1F6B6B;
  --emerald: #3D7A4D;
  --plum: #6B2A57;
  --navy: #1F2A44;
  --navy-deep: #131A2C;
  --ink: #1A1A1A;
  --muted: #5C5C5C;
  --paper: #FFFFFF;
  --paper-warm: #FDFBF7;
  --cream: #FAF6EE;
  --line: rgba(31,42,68,0.08);
  --shadow-sm: 0 4px 14px rgba(31,42,68,0.06);
  --shadow-md: 0 14px 44px rgba(31,42,68,0.10);
  --shadow-lg: 0 28px 80px rgba(31,42,68,0.18);
  --shadow-xl: 0 40px 120px rgba(31,42,68,0.22);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 48px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;  /* hide default cursor — we have custom spotlight */
}

@media (hover: none) { body { cursor: auto; } }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--ease); }
a:hover { opacity: 0.75; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; border: none; background: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   ANIMATED MULTICOLOR BORDER FRAME (low transparency, motion)
   ============================================================ */
.frame {
  position: fixed; inset: 0; pointer-events: none; z-index: 80;
}
.frame::before, .frame::after {
  content: '';
  position: fixed; pointer-events: none;
  background: conic-gradient(from var(--frame-angle, 0deg),
    var(--gold) 0%,
    var(--saffron) 12%,
    var(--crimson) 25%,
    var(--plum) 38%,
    var(--indigo) 50%,
    var(--teal) 63%,
    var(--emerald) 75%,
    var(--gold-soft) 88%,
    var(--gold) 100%);
  opacity: 0.35;
  filter: blur(0.3px);
}
.frame::before {
  /* Top + bottom horizontal bands */
  top: 0; left: 0; right: 0; height: 4px;
  animation: frameRotate 22s linear infinite;
}
.frame::after {
  bottom: 0; left: 0; right: 0; height: 4px;
  animation: frameRotate 22s linear infinite reverse;
}
.frame__side-left, .frame__side-right {
  position: fixed; top: 0; bottom: 0; width: 4px; pointer-events: none; z-index: 80;
  background: conic-gradient(from var(--frame-angle, 90deg),
    var(--gold), var(--saffron), var(--crimson), var(--plum),
    var(--indigo), var(--teal), var(--emerald), var(--gold-soft), var(--gold));
  opacity: 0.35;
}
.frame__side-left { left: 0; animation: frameRotateSide 22s linear infinite; }
.frame__side-right { right: 0; animation: frameRotateSide 22s linear infinite reverse; }

@property --frame-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes frameRotate {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
@keyframes frameRotateSide {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 200%; }
}

/* Subtle inner glow that intensifies on scroll */
.frame__glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 79;
  box-shadow: inset 0 0 calc(40px + var(--scroll-glow, 0px)) rgba(184,138,44, calc(0.06 + var(--scroll-glow-opacity, 0))),
              inset 0 0 calc(80px + var(--scroll-glow, 0px) * 2) rgba(192,83,26, calc(0.04 + var(--scroll-glow-opacity, 0) * 0.5));
  transition: box-shadow 0.6s var(--ease);
}

/* ============================================================
   CURSOR SPOTLIGHT (Vercel-style mouse-follow radial gradient)
   ============================================================ */
.spotlight {
  position: fixed; inset: 0; pointer-events: none; z-index: 78;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(184,138,44,0.08),
    rgba(192,83,26,0.04) 30%,
    transparent 60%);
  transition: opacity 0.4s var(--ease);
  mix-blend-mode: multiply;
}

.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 200;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(192,83,26,0.5);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.3s var(--ease), transform 0.12s linear;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  padding: 18px 0; transition: all 0.5s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(31,42,68,0.06);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__logo {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 50%;
  overflow: visible;
}
.nav__logo img {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(201, 162, 79, 0.45))
          drop-shadow(0 0 20px rgba(255, 233, 168, 0.25));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  position: relative;
  z-index: 2;
  animation: medalPulse 3.2s ease-in-out infinite;
}
@keyframes medalPulse {
  0%, 100% {
    filter: drop-shadow(0 4px 14px rgba(201, 162, 79, 0.4))
            drop-shadow(0 0 18px rgba(255, 233, 168, 0.2));
  }
  50% {
    filter: drop-shadow(0 6px 22px rgba(201, 162, 79, 0.7))
            drop-shadow(0 0 32px rgba(255, 233, 168, 0.55));
  }
}
.nav__brand:hover .nav__logo img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 8px 26px rgba(201, 162, 79, 0.8))
          drop-shadow(0 0 36px rgba(255, 233, 168, 0.7));
}

/* Diagonal shine sweep across the medallion (CSS overlay — guaranteed to animate) */
.nav__logo::before {
  content: '';
  position: absolute; top: 4px; left: 4px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 250, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    transparent 70%);
  background-size: 250% 250%;
  background-position: 200% 0;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
  animation: medalShine 3.2s ease-in-out infinite;
  opacity: 0.85;
  -webkit-mask: radial-gradient(circle at center, black 60%, transparent 75%);
          mask: radial-gradient(circle at center, black 60%, transparent 75%);
}
@keyframes medalShine {
  0%, 100% { background-position: 200% 0; opacity: 0; }
  40%, 60% { opacity: 0.9; }
  50% { background-position: -100% 0; }
}

/* Outer pulsing ring — gives the medal a "shining" feel even at rest */
.nav__logo::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 233, 168, 0.5);
  pointer-events: none;
  z-index: 1;
  animation: medalRing 2.8s ease-in-out infinite;
}
@keyframes medalRing {
  0%, 100% { transform: scale(0.95); opacity: 0; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.nav__name { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name strong { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); font-weight: 600; }
.nav__name span { font-size: 11px; letter-spacing: 2.5px; color: var(--saffron); text-transform: uppercase; }
.nav__menu { display: flex; gap: 28px; align-items: center; }
.nav__menu a { font-size: 14px; font-weight: 500; color: var(--navy); position: relative; padding: 6px 0; }
.nav__menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transition: width 0.4s var(--ease); border-radius: 2px;
}
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }
.nav__menu a.active { color: var(--saffron); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px; font-size: 14px; font-weight: 500;
  cursor: none; transition: all 0.4s var(--ease); white-space: nowrap;
  border: 1.5px solid transparent; position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--saffron), #A04416);
  color: white; box-shadow: 0 10px 28px rgba(192,83,26,0.28);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(192,83,26,0.4); opacity: 1; }
.btn--primary:hover::before { opacity: 1; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: white; opacity: 1; transform: translateY(-2px); }
.btn--white { background: white; color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1; }
.btn--gold { background: var(--gold); color: white; }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 80px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.05);
  animation: kenBurns 28s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,42,68,0.55), rgba(192,83,26,0.25), rgba(184,138,44,0.18));
}
@keyframes kenBurns { from {transform: scale(1.05);} to {transform: scale(1.18);} }

.hero__content {
  position: relative; z-index: 2; max-width: 920px; color: white;
  animation: fadeUp 1.3s var(--ease) both;
}
@keyframes fadeUp { from {opacity: 0; transform: translateY(50px);} to {opacity: 1; transform: translateY(0);} }
.hero__eyebrow {
  display: inline-block; padding: 9px 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28); border-radius: 999px;
  font-size: 11.5px; letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 32px;
  backdrop-filter: blur(12px);
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 96px); color: white; font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero__sub {
  font-size: clamp(16px, 1.6vw, 21px); max-width: 660px; margin-bottom: 44px;
  font-weight: 300; opacity: 0.95;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 56px; margin-top: 72px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18); flex-wrap: wrap;
}
.hero__stat strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 40px; color: white; font-weight: 500;
  background: linear-gradient(135deg, white, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__stat span { font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.85; }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: white; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.7;
  z-index: 3;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% {opacity: 0.3; height: 30px;} 50% {opacity: 1; height: 50px;} }

/* ============================================================
   SECTION FRAME
   ============================================================ */
section { padding: 130px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 88px; max-width: 800px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; padding: 7px 18px;
  border: 1px solid var(--saffron); border-radius: 999px;
  font-size: 11px; letter-spacing: 3.5px; color: var(--saffron);
  text-transform: uppercase; margin-bottom: 28px; font-weight: 500;
  background: rgba(192,83,26,0.04);
}
.section-head h1, .section-head h2 { font-size: clamp(38px, 5.4vw, 72px); margin-bottom: 22px; }
.section-head h1 em, .section-head h2 em { font-style: italic; color: var(--saffron); }
.section-head p { font-size: 17px; color: var(--muted); max-width: 660px; margin: 0 auto; line-height: 1.75; }

/* ============================================================
   PAGE HERO (smaller hero used on inner pages)
   ============================================================ */
.page-hero {
  padding: 180px 0 80px; text-align: center;
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,138,44,0.08), transparent 70%);
  border-radius: 50%;
  animation: floaty 14s ease-in-out infinite alternate;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,83,26,0.06), transparent 70%);
  border-radius: 50%;
  animation: floaty 16s ease-in-out infinite alternate-reverse;
}
@keyframes floaty {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}
.page-hero .container { position: relative; z-index: 1; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media::before {
  content: ''; position: absolute; top: -24px; left: -24px; right: 24px; bottom: 24px;
  border: 2px solid var(--gold); border-radius: var(--r-lg); z-index: -1;
  background: linear-gradient(135deg, transparent, rgba(184,138,44,0.06));
}
.about-copy h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 28px; }
.about-copy h2 em { font-style: italic; color: var(--saffron); }
.about-copy p { font-size: 17px; color: var(--ink); margin-bottom: 18px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.about-feature {
  padding: 22px; background: white; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: all 0.5s var(--ease);
}
.about-feature::before {
  content: ''; position: absolute; inset: -1px;
  background: conic-gradient(from var(--angle, 0deg),
    transparent 0%, var(--gold) 25%, transparent 50%);
  border-radius: var(--r-md); z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.about-feature:hover::before { opacity: 1; }
.about-feature:hover { transform: translateY(-4px); }
.about-feature strong {
  display: block; color: var(--saffron);
  font-family: 'Cormorant Garamond', serif; font-size: 30px; margin-bottom: 4px;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

/* ============================================================
   VILLAS GRID
   ============================================================ */
.villa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.villa-card {
  background: white; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.6s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.villa-card::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from var(--angle, 0deg),
    transparent, var(--gold) 20%, var(--saffron) 30%, transparent 50%, transparent);
  border-radius: var(--r-lg);
  z-index: -1; opacity: 0;
  transition: opacity 0.6s var(--ease);
  animation: borderRotate 6s linear infinite;
}
.villa-card:hover::before { opacity: 0.7; }
.villa-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }

.villa-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.villa-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.villa-card:hover .villa-card__media img { transform: scale(1.1); }
.villa-card__badge {
  position: absolute; top: 22px; right: 22px;
  background: white; color: var(--navy); padding: 8px 18px;
  border-radius: 999px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.villa-card__new {
  position: absolute; top: 22px; left: 22px;
  background: linear-gradient(135deg, var(--saffron), var(--crimson));
  color: white; padding: 6px 14px;
  border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(192,83,26,0.35);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 18px rgba(192,83,26,0.35), 0 0 0 0 rgba(192,83,26,0.4); }
  50% { box-shadow: 0 6px 18px rgba(192,83,26,0.35), 0 0 0 14px rgba(192,83,26,0); }
}
.villa-card__body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.villa-card__body h3 { font-size: 34px; margin-bottom: 8px; }
.villa-card__tagline { color: var(--saffron); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 19px; margin-bottom: 22px; }
.villa-card__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 22px; font-size: 14px; color: var(--muted);
}
.villa-card__highlights { list-style: none; margin-bottom: 28px; flex: 1; }
.villa-card__highlights li {
  padding: 7px 0 7px 24px; position: relative; font-size: 14.5px;
}
.villa-card__highlights li::before {
  content: '✦'; position: absolute; left: 0; color: var(--gold);
}
.villa-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.villa-card__actions .btn { flex: 1; justify-content: center; min-width: 0; padding: 13px 18px; font-size: 13.5px; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-bg { background: var(--paper-warm); }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.amenity {
  background: white; padding: 32px 22px; border-radius: var(--r-md);
  text-align: center; box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative; overflow: hidden;
}
.amenity::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(184,138,44,0.1), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.amenity:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.amenity:hover::after { opacity: 1; }
.amenity__icon { font-size: 38px; }
.amenity__label { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.4; }

/* ============================================================
   DESTINATION SECTION (Ujjain story)
   ============================================================ */
.destination {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  position: relative; overflow: hidden;
}
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.dest-images { position: relative; height: 580px; }
.dest-images > div {
  position: absolute; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  background-size: cover; background-position: center;
  overflow: hidden;
  transition: transform 1s var(--ease);
}
.dest-images > div::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31,42,68,0.55));
}
.dest-images > div:hover { transform: scale(1.03); }
.dest-images > div:nth-child(1) { top: 0; left: 0; width: 60%; height: 60%; }
.dest-images > div:nth-child(2) { bottom: 0; right: 0; width: 65%; height: 55%; }
.dest-images > div:nth-child(3) { top: 35%; right: 8%; width: 35%; height: 28%; border: 6px solid var(--paper); }
.dest-images label {
  position: absolute; bottom: 18px; left: 22px; color: white;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 19px; z-index: 1;
}
.dest-copy h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 24px; }
.dest-copy h2 em { font-style: italic; color: var(--saffron); }
.dest-copy p { font-size: 17px; line-height: 1.85; margin-bottom: 18px; color: var(--ink); }
.dest-list { list-style: none; padding: 0; margin-top: 28px; }
.dest-list li {
  padding: 16px 0 16px 32px; position: relative; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.dest-list li::before {
  content: '◆'; position: absolute; left: 0; color: var(--saffron); font-size: 12px; top: 18px;
}

/* ============================================================
   TRANSPORT / CARS
   ============================================================ */
.car-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.car-card {
  background: white; padding: 30px; border-radius: var(--r-md);
  border: 1px solid var(--line); transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.car-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(184,138,44,0.04));
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.car-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.car-card:hover::before { opacity: 1; }
.car-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 12px; position: relative; }
.car-card__head h4 { font-size: 23px; font-weight: 500; }
.car-card__price {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 600; color: var(--saffron); white-space: nowrap;
}
.car-card__meta { font-size: 13px; color: var(--muted); margin-bottom: 6px; position: relative; }
.car-card__use { font-size: 14.5px; color: var(--ink); margin-bottom: 6px; position: relative; }
.car-card__unit { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; position: relative; }

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder {
  background: var(--navy); color: white; position: relative; overflow: hidden;
}
.founder::before {
  content: ''; position: absolute; top: -250px; left: -250px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,83,26,0.22), transparent 70%);
  border-radius: 50%;
  animation: floaty 18s ease-in-out infinite alternate;
}
.founder::after {
  content: ''; position: absolute; bottom: -250px; right: -250px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,138,44,0.22), transparent 70%);
  border-radius: 50%;
  animation: floaty 22s ease-in-out infinite alternate-reverse;
}
.founder .section-head h2,
.founder h3 { color: white; }
.founder .section-head p,
.founder p { color: rgba(255,255,255,0.85); }
.founder .eyebrow { color: var(--gold-soft); border-color: var(--gold-soft); background: rgba(220,190,123,0.08); }

.founder__grid {
  display: grid; grid-template-columns: 0.8fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1; margin-bottom: 100px;
}
.founder__avatar {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold), var(--crimson));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 160px;
  color: white; font-weight: 500;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.founder__avatar::before {
  content: ''; position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}
.founder__avatar::after {
  content: ''; position: absolute; inset: -40px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
  animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.founder__copy h3 { font-size: 44px; margin-bottom: 8px; }
.founder__copy .role {
  color: var(--gold-soft); font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 32px; display: block;
}
.founder__copy p { font-size: 16.5px; line-height: 1.9; margin-bottom: 18px; }
.founder__quote {
  margin-top: 40px; padding: 28px 32px;
  border-left: 3px solid var(--gold); background: rgba(255,255,255,0.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: 'Cormorant Garamond', serif; font-size: 23px; font-style: italic;
  line-height: 1.55;
}
.founder__quote::before { content: '"'; color: var(--gold); font-size: 40px; vertical-align: -10px; margin-right: 4px; }

/* Stats counters */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease);
}
.stat-card::before {
  content: ''; position: absolute; inset: -1px;
  background: conic-gradient(from var(--angle, 0deg),
    transparent, var(--gold) 25%, transparent 50%, transparent);
  border-radius: var(--r-md); z-index: -1;
  animation: borderRotate 5s linear infinite;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); }
.stat-card:hover::before { opacity: 1; }
.stat-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 600;
  background: linear-gradient(135deg, white, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-card__suffix { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--gold-soft); }
.stat-card__label {
  margin-top: 12px; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.stat-card__sub { margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 300; }

/* Testimonials / Notable Guests */
.notable-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 60px; position: relative; z-index: 1;
}
.notable-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all 0.5s var(--ease);
}
.notable-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.notable-card strong {
  color: var(--gold-soft); font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  display: block; margin-bottom: 6px;
}
.notable-card p { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-bg { background: var(--paper-warm); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: white; padding: 34px; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--crimson), var(--gold), var(--saffron));
  background-size: 300% 100%;
  animation: gradientFlow 6s linear infinite;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.review-card:hover::before { opacity: 1; }
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.review-card__stars { color: var(--gold); font-size: 18px; letter-spacing: 5px; margin-bottom: 18px; }
.review-card__text { font-size: 15px; line-height: 1.8; color: var(--ink); flex: 1; margin-bottom: 26px; font-style: italic; }
.review-card__author { padding-top: 20px; border-top: 1px solid var(--line); }
.review-card__author strong { display: block; color: var(--navy); font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.review-card__author span { font-size: 12px; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; }

/* ============================================================
   BLOG / JOURNAL
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.blog-grid--two { grid-template-columns: repeat(2, 1fr); gap: 36px; }
.blog-card {
  border-radius: var(--r-md); overflow: hidden;
  background: white; transition: all 0.6s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.blog-card::before {
  content: ''; position: absolute; inset: -1px;
  background: conic-gradient(from var(--angle, 0deg),
    transparent, var(--gold-soft) 25%, transparent 50%, transparent);
  border-radius: var(--r-md); z-index: -1;
  animation: borderRotate 6s linear infinite;
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.blog-card:hover::before { opacity: 0.6; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.1); }
.blog-card__tag {
  position: absolute; top: 18px; left: 18px;
  background: white; color: var(--saffron);
  padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.blog-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card__body h3 { font-size: 23px; margin-bottom: 12px; line-height: 1.3; }
.blog-card__body p { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; flex: 1; line-height: 1.65; }
.blog-card__link { color: var(--saffron); font-weight: 500; font-size: 14px; }

/* Blog article */
.article {
  max-width: 820px; margin: 0 auto; padding: 60px 32px 100px;
  font-size: 17.5px; line-height: 1.85; color: var(--ink);
}
.article h1 {
  font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px;
}
.article .article__meta {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 36px;
}
.article .article__hero {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--r-lg); margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
}
.article h2 {
  font-size: 32px; margin-top: 50px; margin-bottom: 20px;
  color: var(--navy);
}
.article h3 { font-size: 24px; margin-top: 36px; margin-bottom: 14px; color: var(--navy); }
.article p { margin-bottom: 22px; }
.article ul, .article ol { margin: 16px 0 22px 28px; }
.article li { margin-bottom: 8px; }
.article blockquote {
  margin: 32px 0; padding: 24px 32px;
  border-left: 3px solid var(--saffron);
  background: var(--paper-warm); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic;
  color: var(--navy); line-height: 1.5;
}
.article a { color: var(--saffron); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   GALLERY (temple categories)
   ============================================================ */
.gallery-cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cat-card {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  cursor: none; transition: all 0.7s var(--ease);
  box-shadow: var(--shadow-md);
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease);
}
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,42,68,0.05) 0%, rgba(31,42,68,0.55) 60%, rgba(31,42,68,0.85) 100%);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.cat-card:hover::before { transform: scale(1.08); }
.cat-card__inner {
  position: absolute; inset: 0; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white; z-index: 1;
}
.cat-card__inner h3 {
  color: white; font-size: 30px; margin-bottom: 6px;
}
.cat-card__inner span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.cat-card__count {
  position: absolute; top: 22px; right: 22px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-bg {
  background: linear-gradient(135deg, var(--saffron), #A04416);
  color: white; position: relative; overflow: hidden;
}
.contact-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(184,138,44,0.25), transparent 40%);
}
.contact-bg .section-head h2 { color: white; }
.contact-bg .section-head h2 em { color: var(--gold-soft); }
.contact-bg .section-head p { color: rgba(255,255,255,0.95); }
.contact-bg .eyebrow { color: white; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  position: relative; z-index: 1;
}
.contact-card {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px; border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center; transition: all 0.5s var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-6px); }
.contact-card__icon { font-size: 40px; margin-bottom: 18px; }
.contact-card h4 { color: white; font-size: 24px; margin-bottom: 10px; font-weight: 500; }
.contact-card a { font-size: 17px; font-weight: 500; }
.contact-card span { display: block; font-size: 13px; opacity: 0.85; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 70px 0 36px; text-align: center; }
.footer__brand { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: white; margin-bottom: 12px; }
.footer__tag {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 36px;
}
.footer__links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; font-size: 14px; }
.footer__copy { font-size: 12px; opacity: 0.6; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ============================================================
   FLOATING ACTIONS (WhatsApp + Chatbot)
   ============================================================ */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  font-size: 30px; cursor: none;
  transition: all 0.5s var(--ease);
  animation: fabPulse 2.4s ease-in-out infinite;
}
.fab:hover { transform: scale(1.12) rotate(8deg); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 22px rgba(37,211,102,0); }
}

.chatbot-toggle {
  position: fixed; bottom: 108px; right: 28px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 28px; cursor: none;
  transition: all 0.5s var(--ease);
  border: 2px solid var(--gold);
}
.chatbot-toggle:hover { transform: scale(1.12); background: var(--saffron); }

.chatbot {
  position: fixed; bottom: 108px; right: 28px; z-index: 95;
  width: 400px; max-width: calc(100vw - 32px); height: 580px; max-height: 75vh;
  background: white; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); overflow: hidden;
  display: none; flex-direction: column;
  animation: chatIn 0.5s var(--ease);
}
.chatbot.open { display: flex; }
@keyframes chatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chatbot__header {
  background: linear-gradient(135deg, var(--saffron), var(--gold), var(--crimson));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: white; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.chatbot__header strong { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; display: block; }
.chatbot__header span { display: block; font-size: 11px; opacity: 0.9; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.chatbot__close { color: white; font-size: 26px; cursor: none; }
.chatbot__body { flex: 1; overflow-y: auto; padding: 22px; background: var(--paper-warm); display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 82%; padding: 12px 16px; border-radius: 18px; font-size: 14px; line-height: 1.55; word-wrap: break-word; }
.chat-msg.bot { background: white; color: var(--navy); align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.chat-msg.user { background: var(--saffron); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 0; }
.chat-quick button {
  background: white; color: var(--saffron); border: 1px solid var(--saffron);
  padding: 7px 12px; border-radius: 999px; font-size: 12px; cursor: none;
  transition: all 0.3s var(--ease);
}
.chat-quick button:hover { background: var(--saffron); color: white; }
.chatbot__input { display: flex; padding: 14px; gap: 8px; border-top: 1px solid var(--line); background: white; }
.chatbot__input input { flex: 1; padding: 13px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; outline: none; font-family: inherit; }
.chatbot__input input:focus { border-color: var(--saffron); }
.chatbot__input button { background: var(--saffron); color: white; padding: 12px 20px; border-radius: 999px; font-weight: 500; font-size: 13px; }

/* ============================================================
   GALLERY MODAL (lightbox for villa photos)
   ============================================================ */
.gallery-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(19, 26, 44, 0.96); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 24px; animation: fadeIn 0.4s ease;
}
.gallery-modal.open { display: flex; }
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
.gallery-modal__inner {
  background: white; border-radius: var(--r-lg);
  max-width: 1180px; width: 100%; max-height: 92vh; overflow: hidden;
  display: flex; flex-direction: column;
  animation: modalIn 0.5s var(--ease);
}
@keyframes modalIn { from {opacity: 0; transform: scale(0.95);} to {opacity: 1; transform: scale(1);} }
.gallery-modal__head { padding: 26px 36px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.gallery-modal__head h3 { font-size: 30px; }
.gallery-modal__close { font-size: 30px; color: var(--muted); cursor: none; }
.gallery-modal__grid { padding: 24px; overflow-y: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-modal__grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-sm);
  cursor: none; transition: transform 0.5s var(--ease);
}
.gallery-modal__grid img:hover { transform: scale(1.04); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s var(--ease); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s var(--ease); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 1s var(--ease); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav__menu { display: none; }
  .container { padding: 0 20px; }
  .villa-grid, .review-grid, .car-grid, .blog-grid, .blog-grid--two,
  .stats-grid, .notable-grid, .gallery-cats, .contact-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .dest-grid, .founder__grid { grid-template-columns: 1fr; gap: 40px; }
  .dest-images { height: 380px; }
  .gallery-modal__grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 80px 0; }
  .hero { padding: 110px 0 60px; }
  .hero__stats { gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founder__avatar { max-width: 240px; margin: 0 auto; font-size: 100px; }
  .chatbot { width: calc(100vw - 32px); right: 16px; }
}
