/* Anandam Ranchi - Premium Project Site */

:root {
  --bg: #f8f6f2;
  --bg-warm: #f1ece4;
  --bg-dark: #12100e;
  --surface: #ffffff;
  --text: #1a1714;
  --text-soft: #5c564f;
  --text-muted: #8a8278;
  --gold: #a67c3d;
  --gold-dark: #8a6530;
  --gold-light: #d4b07a;
  --line: #e4ddd3;
  --line-dark: #2a2622;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-numeric: 'Outfit', -apple-system, sans-serif;

  --header-h: 76px;
  --container: 1240px;
  --section-pad: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  min-width: 0;
}

/* Utilities */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-light { color: var(--gold-light); }

.section { padding: var(--section-pad) 0; max-width: 100%; overflow-x: clip; }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-warm { background: var(--bg-warm); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-title-light { color: #fff; }

/* Readable lining figures for measurements, stats, and IDs */
.fact-num,
.room-schedule-dim,
.location-distance-km,
.home-pick-area,
.area-tile strong,
.home-type-card strong,
.lightbox-count,
.contact-line strong,
.msg-bubble {
  font-family: var(--font-numeric);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
}

.lead-light { color: rgba(255,255,255,0.62); }

.section-intro { margin-bottom: 48px; max-width: 720px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-lg { padding: 15px 30px; font-size: 0.8rem; }
.btn-full { width: 100%; }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: #000; }

.btn-line {
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  background: transparent;
}
.btn-line:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-ghost {
  padding: 10px 18px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.45); }

.text-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--gold); }

.chip {
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  transition: all 0.25s;
}
.chip:hover { border-color: var(--gold-light); color: var(--text); }
.chip.active { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 2000;
  transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(18, 16, 14, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1.05; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
}

.brand-city {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.header-nav { display: flex; gap: 28px; }

.header-nav a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  position: relative;
  transition: color 0.25s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.header-nav a:hover,
.header-nav a.active { color: #fff; }
.header-nav a.active::after { width: 100%; }

.header-actions { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s;
}
.menu-toggle.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  padding-top: env(safe-area-inset-top, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 18px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
}

.mobile-menu-brand .brand-city {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mobile-menu-close:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px clamp(20px, 4vw, 40px);
  min-height: 0;
}

.mobile-menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 1.75rem);
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu-nav a:last-child {
  border-bottom: none;
}

.mobile-menu-nav a:active {
  color: var(--gold-light);
}

.mobile-menu-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 40px);
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.mobile-menu-footer a,
.mobile-menu-footer button {
  padding: 12px 0;
  text-align: left;
}

.mobile-menu-phone {
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
}

.mobile-menu-footer button {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,16,14,0.55) 0%, rgba(18,16,14,0.25) 35%, rgba(18,16,14,0.88) 100%),
    rgba(18,16,14,0.18);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) clamp(20px, 4vw, 40px) 100px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-pill {
  padding: 6px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  background: rgba(0,0,0,0.25);
}

.trust-pill-sold {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(166,124,61,0.18);
}

.hero-developer {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 20px;
  max-width: 820px;
}

.hero-headline span { display: block; }
.hero-headline-accent { color: var(--gold-light); font-style: italic; }

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-sound {
  position: absolute;
  right: 32px;
  bottom: 120px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.hero-sound:hover { background: rgba(0,0,0,0.5); }
.hero-sound .icon-on { display: none; }
.hero-sound.on .icon-off { display: none; }
.hero-sound.on .icon-on { display: block; }

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-scroll-hint i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Project facts */
.project-facts {
  position: relative;
  background:
    radial-gradient(ellipse 50% 120% at 37.5% 50%, rgba(166,124,61,0.14) 0%, transparent 65%),
    var(--bg-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(40px, 6vw, 56px) 0;
  overflow: hidden;
}

.project-facts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.4s var(--ease-out) 0.15s;
}

.project-facts.visible::before { transform: scaleX(1); }

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}

.facts-row .fact.reveal:nth-child(1) { transition-delay: 0.05s; }
.facts-row .fact.reveal:nth-child(2) { transition-delay: 0.15s; }
.facts-row .fact.reveal:nth-child(3) { transition-delay: 0.25s; }
.facts-row .fact.reveal:nth-child(4) { transition-delay: 0.35s; }

.fact {
  text-align: center;
  padding: 28px 16px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.fact::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-dark), transparent);
}
.fact:nth-child(4n)::after,
.fact:last-child::after { display: none; }
.fact:nth-child(-n+2) { border-bottom: none; }

.fact-commercial {
  background: linear-gradient(180deg, rgba(166,124,61,0.1) 0%, rgba(166,124,61,0.02) 100%);
}

.fact-sold-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(166,124,61,0.45);
  animation: soldGlow 2.8s ease-in-out infinite;
}

@keyframes soldGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(166,124,61,0.35); transform: translateY(0); }
  50% { box-shadow: 0 6px 32px rgba(212,176,122,0.55); transform: translateY(-1px); }
}

.fact-num, .fact-place-text {
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.fact-num {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}

.fact-place-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}

.fact-num-gold {
  background: linear-gradient(165deg, #fff 0%, var(--gold-light) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fact-num.fact-counted,
.fact-place-text.fact-counted {
  animation: factPop 0.55s var(--ease-out);
}

@keyframes factPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.fact-place-text {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-style: italic;
  color: var(--gold-light);
}

.fact-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.overview-visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.overview-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.overview-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.overview-copy p { color: var(--text-soft); margin-bottom: 16px; }
.overview-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pillar {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.pillar-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.pillar p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.55; }

/* Location */
.location-film-row {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.location-film-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.film-caption {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.location-distance-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
}

.location-distance-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.location-distance-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 8px 0;
}

.location-distance-head p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 520px;
}

.location-distance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
  align-content: start;
}

.location-distance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
  min-height: 56px;
}

.location-distance-item--near {
  border-color: rgba(166,124,61,0.28);
  background: rgba(166,124,61,0.07);
}

.location-distance-km {
  flex-shrink: 0;
  min-width: 64px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.location-distance-name {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.35;
}

.location-map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.location-info-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.video-frame {
  background: #0a0908;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame--portrait {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 640px);
  margin: 0 auto 14px;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0908;
}

.map-panel {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.map-panel iframe { width: 100%; height: 260px; border: 0; }

@media (min-width: 901px) {
  .location-film-row .video-frame--portrait {
    max-height: min(68vh, 560px);
    margin-bottom: 0;
  }
  .location-map-row .map-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .location-map-row .map-panel iframe {
    flex: 1;
    min-height: 300px;
  }
}

.map-open {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--line-dark);
}
.map-open:hover { background: rgba(255,255,255,0.08); }

.address-card {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  margin-bottom: 20px;
}

.address-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.address-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.address-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.location-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
}

.location-perks li {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.location-perks strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
}

.location-perks li > span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

.distance-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.distance-zone {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 24px;
}

.distance-zone-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.distance-zone-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.distance-zone-head span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.distance-item {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.distance-item--near {
  border-color: rgba(166,124,61,0.25);
  background: rgba(166,124,61,0.06);
}

.distance-item strong {
  display: block;
  font-size: 0.86rem;
  color: #fff;
  line-height: 1.35;
}

.distance-item span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Homes */
.home-summary {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.home-type-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.home-type-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.home-type-card strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.home-type-card > span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.home-type-card-note {
  border-color: rgba(166,124,61,0.35);
  background: linear-gradient(135deg, var(--surface), var(--bg-warm));
}

.home-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.home-explorer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-pick {
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: left;
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  width: 100%;
}

.home-pick.pick-four .home-pick-bhk {
  background: rgba(166,124,61,0.12);
  border-color: rgba(166,124,61,0.35);
}

.home-pick:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.home-pick.active {
  border-color: var(--gold);
  background: var(--bg-warm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.home-pick.hidden { display: none; }

.home-pick-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.home-pick-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.home-pick-bhk {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 3px 8px;
  border: 1px solid rgba(166,124,61,0.25);
  border-radius: 2px;
  background: rgba(255,255,255,0.6);
}
.home-pick-area {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.1;
}
.home-pick-unit {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.home-stage {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-plans-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.home-detail-band {
  padding: 24px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.home-detail-head {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.home-detail-identity .home-detail-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.home-detail-identity h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.home-floors {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 52ch;
}

.home-area-tiles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.area-tile {
  min-width: 148px;
  padding: 16px 18px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.area-tile--accent {
  background: linear-gradient(145deg, #f8f4ec, var(--bg-warm));
  border-color: rgba(166,124,61,0.3);
}
.area-tile strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}
.area-tile span {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.room-schedule {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.room-schedule-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.room-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-warm);
}

.room-schedule-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.room-schedule-list li:last-child { border-bottom: none; }

.room-schedule-name {
  color: var(--text-soft);
  line-height: 1.35;
}

.room-schedule-leader {
  border-bottom: 1px dotted rgba(138,130,120,0.45);
  min-width: 24px;
  transform: translateY(-3px);
}

.room-schedule-dim {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card--plan { border-top: 3px solid var(--gold); }
.plan-card--iso { border-top: 3px solid var(--text-soft); }

.plan-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}

.plan-card-head > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plan-card-head span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.plan-card-sub {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 400;
}

.plan-zoom-btn {
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
  transition: all 0.2s;
}
.plan-zoom-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.plan-card-img {
  flex: 1;
  padding: 16px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}

.plan-card--plan .plan-card-img { min-height: 420px; }
.plan-card--iso .plan-card-img { min-height: 420px; }

.plan-card-img img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  transition: opacity 0.3s;
}

.site-plan-block {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
  overflow: hidden;
}

.site-plan-head {
  padding: 20px 24px 0;
}

.site-plan-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.site-plan-head p {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.site-plan-frame { padding: 0 24px 24px; cursor: zoom-in; }
.site-plan-frame img { width: 100%; }

/* Lifestyle */
.amenity-editorial { margin-bottom: 48px; }

.amenity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  min-height: 360px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.amenity-row:nth-child(even) .amenity-row-img { order: 2; }
.amenity-row:nth-child(even) .amenity-row-copy { order: 1; }

.amenity-row-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.amenity-row-img img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.amenity-row:hover .amenity-row-img img { transform: scale(1.04); }

.amenity-row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.amenity-row-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.amenity-row-copy p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 380px;
}

.amenity-essentials h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}

.essential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 500;
  grid-column: span 2;
}
.essential-item--mid { grid-column: span 2; }
.essential-item--wide { grid-column: span 4; }

.essential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.interiors-head { margin-bottom: 24px; }
.interiors-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.interiors-head p { color: var(--text-soft); font-size: 0.92rem; }

.interiors-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.interior-tile--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.interior-tile--feature .interior-tile-img { aspect-ratio: 1; }
.interior-tile--feature .interior-tile-body h4 { font-size: 1.2rem; }

.interior-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.interior-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.interior-tile-img { aspect-ratio: 4/5; overflow: hidden; }
.interior-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.interior-tile:hover .interior-tile-img img { transform: scale(1.05); }

.interior-tile-body { padding: 14px 16px 18px; }
.interior-tile-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.interior-tile-body p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Gallery */
.gallery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--line);
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 21/8;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}

.aerial-block {
  position: relative;
  margin-top: 56px;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  overflow: hidden;
  background: #000;
}

.aerial-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.aerial-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  background: rgba(18,16,14,0.45);
  padding: 40px 24px;
  transition: opacity 0.4s var(--ease-out);
}

.aerial-overlay .section-title {
  max-width: 640px;
}

.aerial-block.playing .aerial-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Home walkthroughs */
.walkthrough-block {
  margin: 56px 0;
}

.walkthrough-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.walkthrough-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin: 8px 0 10px;
}

.walkthrough-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.walkthrough-grid .aerial-block {
  margin-top: 0;
  aspect-ratio: 16 / 10;
  min-height: 260px;
}

.walkthrough-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  color: #fff;
  max-width: 420px;
}

/* Quality */
.quality-intro-row {
  max-width: 640px;
  margin-bottom: 32px;
}

.quality-body {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 300px);
  gap: 24px;
  align-items: start;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spec-tile {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
}

.spec-tile strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.spec-tile p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}

.team-panel {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
}
.team-panel h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.team-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
}
.team-list li:last-child { border-bottom: none; }
.team-list span { color: rgba(255,255,255,0.4); text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.08em; padding-top: 2px; }
.team-list strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.team-developer { margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.team-developer strong { color: var(--gold-light); }

/* Credentials */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.credential-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.credential-card:hover {
  border-color: rgba(166,124,61,0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18,16,14,0.08);
}

.credential-type {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.credential-card p {
  flex: 1;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.credential-action {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.credential-action::after {
  content: " →";
}

/* Enquire */
.enquire { background: var(--bg-warm); }

.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.enquire-direct {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.contact-line span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-line strong {
  font-size: 1rem;
  font-weight: 600;
}
.contact-line:hover strong { color: var(--gold-dark); }

.concierge-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.concierge-card-head {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.concierge-card-head strong { display: block; font-size: 0.95rem; }
.concierge-card-head span { font-size: 0.8rem; color: var(--text-muted); }

.concierge-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.enquire-form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.enquire-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.field-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(0,0,0,0.35);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }

.form-note {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-done {
  text-align: center;
  padding: 40px 20px;
}
.form-done h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand-name { font-size: 1.6rem; }
.footer-brand p { margin-top: 12px; font-size: 0.82rem; line-height: 1.55; max-width: 280px; }

.footer-links h4 {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.25s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* Concierge widget */
.concierge-backdrop {
  display: none;
}

.concierge {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.concierge.open {
  pointer-events: auto;
}

.concierge-launch {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1210;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s, visibility 0.3s;
}
.concierge-launch:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
body.concierge-open .concierge-launch { opacity: 0; visibility: hidden; pointer-events: none; }

.concierge-launch span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge-panel {
  position: fixed;
  left: auto;
  right: 24px;
  bottom: 24px;
  width: 400px;
  max-height: 580px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transition: all 0.35s var(--ease-out);
  overflow: hidden;
  pointer-events: none;
}
.concierge.open .concierge-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.concierge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: var(--bg-dark);
  color: #fff;
}

.concierge-header-info { display: flex; gap: 12px; align-items: center; }
.concierge-header-info strong { display: block; font-size: 0.92rem; }
.concierge-header-info span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

.concierge-close {
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.concierge-close:hover { color: #fff; background: rgba(255,255,255,0.14); }

.concierge-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  max-height: 340px;
  background: var(--bg);
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 92%;
}
.msg-user { align-self: flex-end; align-items: flex-end; }
.msg-bot { align-self: flex-start; }

.msg-bubble {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.86rem;
  line-height: 1.55;
}
.msg-user .msg-bubble {
  background: var(--bg-dark);
  color: #fff;
  border-bottom-right-radius: 0;
}
.msg-bot .msg-bubble {
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom-left-radius: 0;
}

.msg-bubble p { margin-bottom: 8px; }
.msg-bubble p:last-child { margin-bottom: 0; }
.msg-bubble strong { color: var(--gold-dark); }

.msg-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.msg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.msg-action {
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text);
  transition: all 0.2s;
}
.msg-action:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.msg-typing .msg-bubble {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}
.msg-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingDot 1.2s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.concierge-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 18px 0;
  background: var(--bg);
}

.suggest-chip {
  padding: 7px 12px;
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-soft);
  transition: all 0.2s;
}
.suggest-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.concierge-input {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.concierge-input input {
  flex: 1;
  padding: 11px 14px;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  background: var(--bg);
}
.concierge-input input:focus { border-color: var(--gold); }

.concierge-input button {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.concierge-input button:hover { background: var(--gold-dark); }

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.topic-card {
  padding: 12px;
  text-align: left;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.topic-card:hover {
  border-color: var(--gold);
  background: var(--surface);
}
.topic-card small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
}

/* WhatsApp + mobile CTA */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.06); }

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 940;
  padding: 10px 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  gap: 10px;
}
.mobile-cta button,
.mobile-cta a {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.mobile-cta button {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
}
.mobile-cta-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.mobile-cta-primary {
  background: var(--gold);
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: #fff;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.1); }

.lightbox-label {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .location-distance-list { grid-template-columns: 1fr 1fr; }
  .interiors-row { grid-template-columns: repeat(2, 1fr); }
  .interior-tile--feature { grid-column: span 2; grid-row: span 1; }
  .essentials-grid { grid-template-columns: repeat(2, 1fr); }
  .essential-item,
  .essential-item--mid { grid-column: span 1; }
  .essential-item--wide { grid-column: span 2; }
  .facts-row { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .room-schedule-list li {
    grid-template-columns: 1fr auto;
  }
  .room-schedule-leader { display: none; }
  .amenities-showcase { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .header-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }

  .facts-row { grid-template-columns: repeat(2, 1fr); }
  .fact::after { display: none; }

  .overview-grid,
  .location-film-row,
  .location-map-row,
  .home-plans-stage,
  .home-detail-head,
  .enquire-grid,
  .quality-body,
  .credentials-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .spec-grid { grid-template-columns: repeat(2, 1fr); }

  .home-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .location-perks { grid-template-columns: 1fr; }

  .location-film-media {
    width: 100%;
  }

  .location-film-media .video-frame--portrait {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .location-distance-panel,
  .map-panel,
  .location-info-block {
    width: 100%;
    min-width: 0;
  }

  .site-plan-block {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .site-plan-head {
    padding: 16px 16px 0;
  }

  .site-plan-frame {
    padding: 0 12px 16px;
  }

  .gallery-grid {
    width: 100%;
  }

  .gallery-chips {
    width: 100%;
  }

  .distance-list { grid-template-columns: 1fr; }

  .home-area-tiles { justify-content: flex-start; }

  .amenity-row,
  .amenity-row:nth-child(even) .amenity-row-img,
  .amenity-row:nth-child(even) .amenity-row-copy {
    grid-template-columns: 1fr;
    order: unset;
  }
  .amenity-row-img img { min-height: 260px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }

  .location-distance-list { grid-template-columns: 1fr; }
  .home-summary,
  .facts-row,
  .essentials-grid { grid-template-columns: 1fr; }
  .essential-item,
  .essential-item--mid,
  .essential-item--wide { grid-column: span 1; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .fact::after { display: none; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item--tall { grid-row: span 1; }

  /* Mobile — floating WhatsApp (left) + Concierge (right) */
  .mobile-cta { display: none !important; }

  .concierge-launch {
    bottom: calc(20px + env(safe-area-inset-bottom, 0));
    right: 16px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    z-index: 1210;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  }

  .concierge-launch span {
    display: none;
  }

  .concierge-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 16, 14, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
    pointer-events: none;
  }

  .concierge.open .concierge-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .concierge-panel {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: min(88dvh, 720px);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s var(--ease-out), visibility 0.3s;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.22);
  }

  .concierge.open .concierge-panel {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .concierge-messages {
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .concierge-input {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  body.concierge-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.menu-open .site-header {
    visibility: hidden;
  }

  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom, 0));
    left: 16px;
    right: auto;
    z-index: 920;
  }

  .hero-sound { bottom: 100px; right: 20px; }

  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pillars,
  .gallery-grid,
  .credentials-grid,
  .spec-grid,
  .interiors-row,
  .essentials-grid { grid-template-columns: 1fr; }
  .interior-tile--feature { grid-column: span 1; grid-row: span 1; }

  .home-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-plans-stage { grid-template-columns: 1fr; }
  .walkthrough-grid { grid-template-columns: 1fr; }
  .video-frame--portrait { max-height: min(52vh, 460px); }
  .aerial-block { aspect-ratio: 16 / 10; min-height: 280px; }
  .chip { min-height: 44px; padding: 10px 16px; }
  .home-pick { min-height: 100px; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .lightbox-prev, .lightbox-next { display: none; }
  .aerial-overlay { padding: 28px 20px; gap: 14px; }
  .video-frame--portrait { max-height: min(65vh, 520px); }
}
