/* ============================================================
   CÉLESTE — Panchgani Villa
   Light editorial pastel palette
   ============================================================ */

:root {
  /* Pastel earthy palette — drawn from the villa's actual interiors */
  --paper:       #F8F2E6;        /* warm ivory base */
  --paper-2:     #F1E9D8;        /* slightly deeper cream for alt sections */
  --cream:       #ECE2CC;        /* deeper paper accent */
  --stone:       #D8CCB3;        /* sandstone */
  --ink:         #221E18;        /* near black, warm */
  --ink-2:       #3D3830;        /* secondary deep */
  --mute:        #7A7165;        /* muted body text */
  --sage:        #9DAE92;        /* pastel green (from curtains) */
  --sage-deep:   #5E705A;        /* darker green */
  --terracotta:  #C97560;        /* pastel terracotta (from cushions) */
  --terra-soft:  #E2A48D;
  --rose:        #E8B8B0;        /* dusty pink (from flowers) */
  --butter:      #E8C97A;        /* warm gold/butter */
  --sky:         #B7C8D2;        /* soft sky blue */
  --rule:        rgba(34, 30, 24, 0.10);
  --rule-strong: rgba(34, 30, 24, 0.22);
  --shadow-1:    0 28px 60px -28px rgba(34, 30, 24, 0.25);
  --shadow-2:    0 12px 32px -12px rgba(34, 30, 24, 0.18);

  --ff-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --ff-sans:    "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.eyebrow.muted { color: var(--mute); }

.display {
  font-family: var(--ff-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.italic-accent {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}

.body-lg {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 400;
}
.body-md {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}
.container-narrow {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 22px; }
}

.section { padding: 140px 0; position: relative; }
.section.tight { padding: 100px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head .num {
  font-family: var(--ff-display);
  font-size: 92px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  font-feature-settings: "lnum";
  opacity: 0.85;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: var(--ink);
  text-wrap: balance;
}
@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section-head .num { font-size: 56px; }
}

/* ---------- Subtle paper grain ---------- */
.paper-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--ease-out);
}
.nav.scrolled {
  background: rgba(248, 242, 230, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  padding: 14px 56px;
}
.nav-brand {
  display: flex; align-items: center;
}
.nav-logo {
  height: 34px; width: auto; display: block;
  transition: height 0.5s var(--ease-out);
}
.nav.scrolled .nav-logo { height: 28px; }
.nav-brand .dot { width: 5px; height: 5px; background: var(--terracotta); border-radius: 50%; transform: translateY(-7px); }
.nav-links {
  display: flex; gap: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav-link { position: relative; cursor: pointer; transition: color 0.3s; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0; background: var(--terracotta);
  transition: width 0.4s var(--ease-out);
}
.nav-link:hover { color: var(--terracotta); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  transition: all 0.4s var(--ease-out);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav, .nav.scrolled { padding: 14px 22px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding-top: 24px;
}
.hero-copy {
  position: relative; z-index: 2;
}
.hero-headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(56px, 7.6vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 16px 0 32px;
  color: var(--ink);
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line > span {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  animation: rise 1.5s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(2) > span { animation-delay: 0.16s; }
.hero-headline .line:nth-child(3) > span { animation-delay: 0.32s; }
@keyframes rise { to { transform: translateY(0); opacity: 1; } }

.hero-sub {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  animation: heroPhoto 1.4s var(--ease-out) 0.4s forwards;
}
@keyframes heroPhoto { to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-photo .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease-out), transform 5s linear;
}
.hero-photo .slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s var(--ease-out), transform 5.5s ease-out;
}
.hero-photo-tag {
  position: absolute; left: 22px; bottom: 22px;
  padding: 10px 18px;
  background: rgba(248, 242, 230, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 3;
}

/* Slideshow nav arrows */
.hero-slideshow { position: relative; }
.slide-nav {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
  z-index: 3;
  pointer-events: none;
}
.slide-arrow {
  pointer-events: auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(248, 242, 230, 0.85);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), background 0.3s;
}
.hero-slideshow:hover .slide-arrow { opacity: 1; transform: scale(1); }
.slide-arrow:hover { background: var(--paper); }

/* Slideshow dots */
.slide-dots {
  position: absolute; right: 22px; bottom: 24px;
  display: flex; gap: 8px;
  z-index: 3;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(248, 242, 230, 0.55);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--ease-out);
}
.slide-dot.active {
  background: var(--paper);
  width: 26px;
  border-radius: 999px;
}

.hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding-top: 56px;
  margin-top: 64px;
  border-top: 1px solid var(--rule);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute);
}
.hero-foot .pill {
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-foot .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage-deep);
  box-shadow: 0 0 0 0 rgba(94, 112, 90, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94, 112, 90, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(94, 112, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 112, 90, 0); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-foot { flex-direction: column; gap: 14px; text-align: center; padding-top: 36px; margin-top: 36px;}
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--terracotta); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn .arrow { font-size: 14px; }

/* ---------- Welcome (Home intro) ---------- */
.welcome { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 20px 0 28px;
}
.welcome-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.welcome-details .detail {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-2);
}
.welcome-details .detail figcaption {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.welcome-details .detail::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(34,30,24,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.welcome-details .detail:hover::after { opacity: 1; }
.welcome-details .detail:hover figcaption { opacity: 1; transform: translateY(0); }
/* Wide lake vista spans both columns on top */
.welcome-details .d1 {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 9;
}
/* Two square shots side by side beneath */
.welcome-details .d2,
.welcome-details .d3 {
  aspect-ratio: 1 / 1;
}
@media (max-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- The Villa rooms ---------- */
.villa { background: var(--paper); }
.villa-rooms {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.room {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
}
.room .img {
  width: 100%;
  background-size: cover; background-position: center;
  transition: transform 1.4s var(--ease-out);
}
.room:hover .img { transform: scale(1.04); }
.room .body {
  padding: 28px 30px 32px;
}
.room .lbl {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.room h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.room p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mute);
  margin: 0;
}
/* Layout variants */
.room.large { grid-column: span 8; }
.room.large .img { aspect-ratio: 16/10; }
.room.small { grid-column: span 4; }
.room.small .img { aspect-ratio: 4/5; }
.room.half { grid-column: span 6; }
.room.half .img { aspect-ratio: 4/3; }
.room.third { grid-column: span 4; }
.room.third .img { aspect-ratio: 1/1; }
@media (max-width: 900px) {
  .room.large, .room.small, .room.half, .room.third { grid-column: span 12; }
  .room .img { aspect-ratio: 4/3 !important; }
}

/* ---------- Pull quote ---------- */
.pullquote {
  background: var(--cream);
  padding: 130px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.pullquote .q {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 980px; margin: 0 auto;
  color: var(--ink);
}
.pullquote .q em { font-style: italic; color: var(--terracotta); }
.pullquote .by {
  margin-top: 30px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 900px) { .pullquote { padding: 80px 0; } }

/* ---------- Facilities ---------- */
.facilities { background: var(--paper); }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fac {
  background: var(--paper);
  padding: 40px 28px;
  display: flex; flex-direction: column;
  min-height: 240px;
  position: relative;
  cursor: default;
  transition: background 0.5s var(--ease-out);
}
.fac:hover { background: var(--cream); }
.fac .ico {
  width: 40px; height: 40px;
  color: var(--sage-deep);
  margin-bottom: auto;
  transition: color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.fac:hover .ico { color: var(--terracotta); transform: translateY(-3px); }
.fac h5 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 24px;
  margin: 16px 0 8px;
  letter-spacing: -0.005em;
}
.fac p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}
.fac .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--mute);
  opacity: 0.7;
}
@media (max-width: 900px) { .fac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fac-grid { grid-template-columns: 1fr; } }

/* ---------- About Panchgani ---------- */
.panchgani {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pg-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.pg-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.pg-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34,30,24,0.4) 100%);
}
.pg-photo .tag {
  position: absolute; left: 22px; bottom: 22px;
  padding: 10px 16px;
  background: rgba(248, 242, 230, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.pg-facts {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  border-top: 1px solid var(--rule); padding-top: 28px;
}
.pg-facts .f b {
  display: block;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: -0.005em;
  line-height: 1;
}
.pg-facts .f span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .pg-grid { grid-template-columns: 1fr; gap: 48px; }
  .pg-facts { grid-template-columns: 1fr 1fr; }
}

/* ---------- Nearby Adventures ---------- */
.nearby { background: var(--paper); }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
}
.adv-card:hover { transform: translateY(-4px); }
.adv-card .img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  transition: transform 1.4s var(--ease-out);
}
.adv-card:hover .img { transform: scale(1.06); }
.adv-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(34,30,24,0.78) 100%);
  pointer-events: none;
}
.adv-card .meta {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  color: var(--paper);
}
.adv-card .meta .num {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 8px;
}
.adv-card .meta h4 {
  font-family: var(--ff-display);
  font-weight: 400; font-size: 30px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.adv-card .meta p {
  font-size: 13px; line-height: 1.55;
  margin: 0;
  color: rgba(248, 242, 230, 0.85);
}
.adv-card .meta .dist {
  margin-top: 12px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--butter);
}
@media (max-width: 900px) { .adv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .adv-grid { grid-template-columns: 1fr; } }

/* ---------- House Rules ---------- */
.house-rules { background: var(--paper); border-top: 1px solid var(--rule); }
.rules-flat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 64px;
}
.rule {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.rules-flat .rule:last-child { border-bottom: none; padding-bottom: 0; }
.rules-flat .rule:nth-last-child(2):nth-child(odd) { border-bottom: none; padding-bottom: 0; }
.rule-chip {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.rule:hover .rule-chip { transform: translateY(-2px); background: var(--paper-2); }
.rule-text { padding-top: 2px; }
.rule-t {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 3px;
}
.rule-d {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
}
@media (max-width: 820px) {
  .rules-flat { grid-template-columns: 1fr; gap: 22px; }
  .rules-flat .rule:nth-last-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 22px; }
}

/* ---------- Contact ---------- */
.contact { background: var(--paper-2); border-top: 1px solid var(--rule); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 36px;
}
.contact-card .lbl {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.contact-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
}
.contact-card .val {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.contact-form { display: grid; gap: 16px; margin-top: 20px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-input {
  padding: 14px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  background: var(--paper);
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.field-input:focus { border-color: var(--terracotta); }
.field-input::placeholder { color: var(--mute); }
textarea.field-input { min-height: 110px; resize: vertical; }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.contact-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.info-cell {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px;
}
.info-cell .l {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.info-cell .v {
  font-size: 14px; line-height: 1.55; color: var(--ink);
}
.info-cell .v a { color: var(--ink); transition: color 0.3s; }
.info-cell .v a:hover { color: var(--terracotta); }

.map-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
  min-height: 280px;
}
.map-card iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

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

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 36px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248, 242, 230, 0.16);
}
.foot-top h6 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 242, 230, 0.5);
  margin: 0 0 18px;
}
.foot-top .brand {
  font-family: var(--ff-display);
  font-size: 38px; letter-spacing: 0.18em; font-weight: 400;
  margin-bottom: 18px;
}
.foot-logo {
  height: 64px; width: auto; display: block;
  margin-bottom: 22px;
}
.foot-top a {
  display: block;
  padding: 6px 0;
  color: rgba(248, 242, 230, 0.75);
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
}
.foot-top a:hover { color: var(--rose); padding-left: 5px; }
.foot-divider {
  height: 1px;
  background: rgba(248, 242, 230, 0.16);
  margin: 56px 0 30px;
}
.foot-mega {
  text-align: center;
  margin: 64px 0 30px;
}
.foot-mega img {
  display: block;
  width: min(80%, 880px);
  height: auto;
  margin: 0 auto;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248, 242, 230, 0.5);
}
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  padding: 24px 0;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scrollx 36s linear infinite;
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.marquee-track .dot { color: var(--terracotta); font-style: normal; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   MOTION & 3D ENHANCEMENT LAYER
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--terracotta), var(--sage), var(--butter));
  z-index: 200;
  transition: transform 0.08s linear;
  will-change: transform;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* 3D pointer tilt */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.tilt.tilting { transition: transform 0.12s linear, box-shadow 0.5s var(--ease-out); }
.tilt::after { transition: opacity 0.5s var(--ease-out); }
/* Glare sheen that follows the pointer */
.tilt .tilt-glare {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(255,255,255,0.45), rgba(255,255,255,0) 45%);
  transition: opacity 0.4s var(--ease-out);
  mix-blend-mode: soft-light;
}
.tilt.tilting .tilt-glare { opacity: 1; }
/* Lift inner imagery for parallax depth */
.room.tilt .img,
.adv-card.tilt .img,
.welcome-details .detail.tilt,
.pg-photo.tilt { backface-visibility: hidden; }

/* Floating depth orbs — soft pastel, autonomous drift */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.orb-a { width: 380px; height: 380px; background: radial-gradient(circle, var(--rose), transparent 70%); animation: floatA 18s ease-in-out infinite; }
.orb-b { width: 460px; height: 460px; background: radial-gradient(circle, var(--sage), transparent 70%); animation: floatB 22s ease-in-out infinite; }
.orb-c { width: 320px; height: 320px; background: radial-gradient(circle, var(--butter), transparent 70%); animation: floatA 26s ease-in-out infinite reverse; }
@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -50px, 0) scale(1.1); }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-50px, 40px, 0) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none !important; }
}
/* Keep section content above orbs */
.welcome .container, .panchgani .container, .pullquote .container-narrow,
.hero .container { position: relative; z-index: 1; }
.hero-orb, .welcome .orb, .panchgani .orb { z-index: 0; }
.welcome, .panchgani, .hero { overflow: hidden; }

/* Hero floating orb */
.hero-orb {
  position: absolute;
  top: 12%; left: -6%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--terra-soft), transparent 68%);
  opacity: 0.35;
  filter: blur(70px);
  border-radius: 50%;
  z-index: 0;
  animation: floatB 24s ease-in-out infinite;
  pointer-events: none;
}

/* Button shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}
.btn:hover::before { left: 140%; }

/* Slide-in dividers / depth on facility grid hover */
.fac { transform-style: preserve-3d; }
.fac:hover .ico { transform: translateY(-3px); }

/* Soft 3D lift on contact info cells */
.info-cell { transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out); }
.info-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
