/* Jost, self-hosted variable geometric sans (display face for Vedant Mayfair) */
/* latin-ext */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(/fonts/jost-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(/fonts/jost-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Vedant Mayfair, Khadakpada, Kalyan West
   Theme: "Monograph". Inverted dark ground, platinum accent,
   Jost in wide-tracked caps. No gold, no warm cream, no
   rounded-corner cards. The reference is an architect's
   monograph, not a builder microsite.
   ============================================================ */

:root {
  /* Primary graphite ramp (plate) */
  --pl-900: #0A0B0D;
  --pl-800: #14161A;
  --pl-700: #1E2127;
  --pl-600: #2B2F37;
  --pl-500: #3C424C;

  /* Inverted ground */
  --cream:   #101215;   /* page ground (dark) */
  --cream-2: #1A1D22;   /* raised panel */
  --ink:     #EDE9E1;   /* bone, primary text */
  --muted:   #9BA1A9;
  --line:    #2A2E34;

  /* Accent: platinum / pewter. No gold anywhere. */
  --gold-1: #A8ADB5;
  --gold-2: #D7DBDF;
  --gold-3: #7C838C;
  --gold-grad: linear-gradient(135deg, #5F666E 0%, #A8ADB5 30%, #E4E7EA 50%, #8E959E 72%, #5F666E 100%);

  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.85);
  --shadow-soft: 0 16px 40px -26px rgba(0, 0, 0, 0.7);
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --track-display: 0.2em;
  --track-eyebrow: 0.3em;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; font-size: 106.25%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html, body { max-width: 100%; overflow-x: hidden; }

/* height:auto is load-bearing: every img carries width/height attributes for CLS,
   and without this the attribute height wins over the fluid CSS width and the
   image renders stretched or object-fit cropped. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--pl-900); }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-1);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--gold-2); }
.eyebrow::before {
  content: ""; display: inline-block;
  width: 26px; height: 1px; margin-right: 12px; vertical-align: middle;
  background: var(--gold-3);
}

.section { padding: clamp(64px, 9vw, 128px) 0; }

.section__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.55rem, 3.4vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--ink);
}
.section__title--light { color: var(--ink); }

.section__head { max-width: 860px; margin-bottom: clamp(38px, 5vw, 66px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__sub { color: var(--muted); font-size: 1.02rem; margin-top: 22px; line-height: 1.78; max-width: 640px; }
.section__head.center .section__sub { margin-inline: auto; }

.center { text-align: center; }

/* Hairline rule, the recurring divider of the monograph */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons: bone on graphite, inverted. No metallic fills. ---------- */
.btn {
  --pad-y: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: var(--pad-y) 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn--lg { --pad-y: 17px; padding-inline: 36px; min-height: 54px; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* Primary: bone plate, graphite type */
.btn--gold {
  background: var(--ink);
  color: var(--pl-900);
  border-color: var(--ink);
}
.btn--gold:hover { background: #fbf8f2; border-color: #fbf8f2; transform: translateY(-2px); }

/* Secondary: hairline outline on the dark ground */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-3);
}
.btn--outline:hover { background: var(--ink); color: var(--pl-900); border-color: var(--ink); }

.btn--outline-light {
  background: rgba(237, 233, 225, 0.04);
  color: var(--ink);
  border-color: rgba(237, 233, 225, 0.42);
}
.btn--outline-light:hover { background: var(--ink); color: var(--pl-900); border-color: var(--ink); }

.btn--dark {
  background: var(--pl-600);
  color: var(--ink);
  border-color: var(--pl-500);
}
.btn--dark:hover { background: var(--pl-500); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--muted); padding-inline: 14px; }

/* ---------- Honeypot + form-note error state ---------- */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note--err { color: #ff8f7a; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--pl-900);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 12px; }
.topbar__rera { color: var(--gold-1); font-weight: 500; text-transform: uppercase; }
.topbar__contact a { color: var(--muted); }
.topbar__contact a:hover { color: var(--ink); }
.topbar__sep { margin: 0 10px; opacity: 0.35; }
.topbar__rera .t-short { display: none; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 18, 21, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.header.scrolled {
  background: rgba(10, 11, 13, 0.97);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: flex-start; min-height: 78px; gap: 20px; }

.brand { display: flex; align-items: center; margin-right: clamp(22px, 5vw, 72px); }
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  color: var(--ink); font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  letter-spacing: 0.26em; line-height: 1;
}
.brand__city {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  color: var(--gold-3); font-size: 0.56rem;
  letter-spacing: 0.42em; line-height: 1; margin-top: 9px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  position: relative;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  transition: color 0.25s;
}
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-1);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link--mobile-cta { display: none; }
.nav__close { display: none; }
.nav-backdrop { display: none; }

.header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn--phone {
  color: var(--ink); border: 1px solid var(--line); background: transparent;
  letter-spacing: 0.1em; padding-inline: 18px;
}
.btn--phone:hover { border-color: var(--gold-1); }
.btn--phone .btn__ic { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Hamburger ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
}
.nav-toggle span {
  width: 24px; height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  display: flex;
  align-items: flex-end;
  background: var(--pl-900);
  color: var(--ink);
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background-size: cover; background-position: center;
  opacity: 0;
  animation: heroKen 34s infinite;
}
.hero__slide--first { animation-name: heroKenFirst; }
@keyframes heroKenFirst {
  0% { opacity: 1; transform: scale(1.03); }
  27% { opacity: 1; }
  31% { opacity: 0; transform: scale(1.1); }
  96% { opacity: 0; }
  100% { opacity: 1; transform: scale(1.03); }
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 11.3s; }
.hero__slide:nth-child(3) { animation-delay: 22.6s; }
@keyframes heroKen {
  0%   { opacity: 0; transform: scale(1.03); }
  4%   { opacity: 1; }
  27%  { opacity: 1; }
  31%  { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide:nth-child(1) { opacity: 1; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(6,7,9,0.96) 0%, rgba(6,7,9,0.78) 26%, rgba(6,7,9,0.3) 58%, rgba(6,7,9,0.12) 100%),
    linear-gradient(100deg, rgba(6,7,9,0.82) 0%, rgba(6,7,9,0.45) 42%, rgba(6,7,9,0.1) 78%);
}
.hero__content { position: relative; z-index: 2; padding: 40px 0 46px; max-width: 720px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(237, 233, 225, 0.28);
  margin-bottom: 30px;
}
.hero__brandline {
  display: block; font-family: var(--font-head); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.15rem);
  line-height: 1.16;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  color: var(--ink);
}
.hero__lead { margin-top: 26px; font-size: 1rem; max-width: 500px; color: rgba(237, 233, 225, 0.8); line-height: 1.78; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__stats {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 30px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(237, 233, 225, 0.18);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-head); font-weight: 300; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink); line-height: 1; letter-spacing: 0.02em;
}
.hero__stats span { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

.hero__scroll { display: none; }

/* ---------- Ledger band (at a glance) ---------- */
.tband { background: var(--pl-900); color: var(--ink); padding: clamp(48px, 7vw, 92px) 0; border-block: 1px solid var(--line); }
.tband__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.tnum {
  text-align: left; padding: 26px 20px 26px 0;
  border-top: 1px solid var(--line);
}
.tnum strong {
  display: block; font-family: var(--font-head); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; color: var(--ink);
  letter-spacing: 0.01em; font-variant-numeric: tabular-nums;
}
.tnum span { display: block; margin-top: 14px; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ---------- About / split feature ---------- */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.about__media { position: relative; }
.about__media img { border: 1px solid var(--line); object-fit: cover; width: 100%; }
.about__media-badge {
  position: absolute; left: 0; bottom: 0;
  background: var(--pl-900); color: var(--ink);
  padding: 16px 24px; border: 1px solid var(--line); border-left: 0; border-bottom: 0;
  text-align: left;
}
.about__media-badge strong { display: block; font-family: var(--font-head); font-weight: 400; font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1; }
.about__media-badge span { display: block; margin-top: 7px; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.about__text p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.82; }
.about__text p strong { color: var(--ink); font-weight: 500; }
.about__list { list-style: none; margin: 26px 0 32px; border-top: 1px solid var(--line); }
.about__list li {
  position: relative; padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink); font-size: 0.96rem; font-weight: 400;
}
.about__list li::before {
  content: ""; position: absolute; left: 0; top: 24px;
  width: 12px; height: 1px; background: var(--gold-1);
}

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr; gap: 36px; }
.pillar {
  background: transparent; border: 0; border-top: 1px solid var(--gold-3);
  padding: 24px 0 0;
  transition: border-top-color 0.35s var(--ease);
}
.pillar:hover { border-top-color: var(--ink); }
.pillar__ic { display: block; margin-bottom: 18px; }
.pillar__ic svg { width: 28px; height: 28px; stroke: var(--gold-1); fill: none; }
.pillar h3 {
  font-family: var(--font-head); font-weight: 400; font-size: 0.92rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 12px; line-height: 1.45;
}
.pillar p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

/* ---------- Configurations ---------- */
.configs { background: var(--cream-2); }
.configs__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.config-card {
  position: relative;
  background: var(--cream);
  transition: background 0.4s var(--ease);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.config-card:hover { background: var(--pl-800); }
.config-card--featured { background: var(--pl-800); }

.config-card__media {
  position: relative; cursor: zoom-in; background: var(--pl-900);
  aspect-ratio: 16 / 11; overflow: hidden; border-bottom: 1px solid var(--line);
}
.config-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.config-card__media:hover img { transform: scale(1.04); }
.config-card__tag {
  position: absolute; top: 0; left: 0;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--pl-900); background: var(--ink);
  padding: 8px 16px;
}
.config-card__body { padding: 30px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.config-card h3 {
  font-family: var(--font-head); font-weight: 400; font-size: 1.2rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 22px;
}
.config-card__specs { list-style: none; display: block; margin-bottom: 26px; border-top: 1px solid var(--line); }
.config-card__specs li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.config-card__specs strong {
  font-family: var(--font-head); font-weight: 300; font-size: 1.35rem; color: var(--ink);
  line-height: 1; font-variant-numeric: tabular-nums; order: 2; text-align: right;
}
.config-card__specs span { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); order: 1; }
.config-card__note { color: var(--muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.config-card .btn { margin-top: auto; }
.configs__cta { margin-top: 46px; }
.amenities__cta { margin-top: 52px; }
.gallery__cta { margin-top: 46px; }
.faq__cta { margin-top: 44px; }

/* ---------- The 39-storey stack: signature component ---------- */
.stack-sec { background: var(--pl-900); border-block: 1px solid var(--line); }
.stack-wrap { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }

.stack {
  display: flex; flex-direction: column-reverse;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 14px 0;
}
.stack__floor {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  height: 11px;
}
.stack__no {
  font-size: 0.56rem; letter-spacing: 0.08em; color: #6E757E;
  text-align: right; font-variant-numeric: tabular-nums; line-height: 1;
}
.stack__bar { height: 1px; background: var(--line); }
.stack__floor--marked .stack__bar { background: var(--gold-1); height: 2px; }
.stack__floor--marked .stack__no { color: var(--ink); }
.stack__floor--ph .stack__bar { background: var(--ink); height: 2px; }
.stack__floor--ph .stack__no { color: var(--ink); }
.stack__tag {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pl-900); background: var(--gold-2); padding: 3px 8px; line-height: 1;
  white-space: nowrap;
}
.stack__tag--bone { background: var(--ink); }
.stack__podium {
  margin: 10px 14px 0; padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}

.stack__key { list-style: none; }
.stack__key li { padding: 18px 0; border-top: 1px solid var(--line); }
.stack__key li:last-child { border-bottom: 1px solid var(--line); }
.stack__key b {
  display: block; font-family: var(--font-head); font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px;
}
.stack__key span { display: block; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ---------- Amenities ---------- */
.amenities { background: var(--cream); }
.amenities .section__title { color: var(--ink); }
.amenities .section__sub { color: var(--muted); }

.amenities__feature { margin-bottom: 50px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.amenities__feature img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.amenities__feature figcaption {
  padding: 14px 18px; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid var(--line); background: var(--cream-2);
}

.amenity-detail { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.amenity-block { background: var(--cream); padding: 32px 28px 34px; }
.amenity-block h3 {
  font-family: var(--font-head); font-weight: 400; font-size: 0.88rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px;
}
.amenity-block__floor { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.amenity-block ul { list-style: none; }
.amenity-block li {
  position: relative; padding: 11px 0 11px 22px; color: var(--ink);
  font-size: 0.94rem; border-bottom: 1px solid var(--line);
}
.amenity-block li:last-child { border-bottom: 0; }
.amenity-block li::before { content: ""; position: absolute; left: 0; top: 21px; width: 10px; height: 1px; background: var(--gold-3); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream-2); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.g-item {
  overflow: hidden; cursor: zoom-in; position: relative;
  border: 1px solid var(--line); background: var(--pl-900);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.7s var(--ease); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 11, 13, 0.42);
  opacity: 0; transition: opacity 0.35s;
}
.g-item:hover img { transform: scale(1.05); }
.g-item:hover::after { opacity: 1; }

/* ---------- Location ---------- */
.location { background: var(--cream); }
.conn-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 48px; border-top: 1px solid var(--line); }
.conn-card {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  background: transparent; border-bottom: 1px solid var(--line);
  padding: 24px 0; color: var(--ink);
}
.conn-card__ic { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); }
.conn-card__ic svg { width: 20px; height: 20px; stroke: var(--gold-1); fill: none; }
.conn-card h4 {
  font-family: var(--font-head); font-weight: 400; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px;
}
.conn-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

.location__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--pl-900); border: 1px solid var(--line);
  padding: 36px 32px;
}
.location__cta h3 { font-family: var(--font-head); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.location__cta p { color: var(--muted); max-width: 560px; margin-top: 10px; font-size: 0.94rem; }

/* ---------- RERA ---------- */
.rera { background: var(--pl-900); color: var(--ink); border-top: 1px solid var(--line); }
.rera .section__title { color: var(--ink); }
.rera .section__sub { color: var(--muted); }
.rera-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 26px; }
.rera-grid--single { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
.rera-card { background: var(--cream); padding: 30px 24px; text-align: center; }
.rera-card__tower { font-family: var(--font-head); font-weight: 400; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.rera-card__label { display: block; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.rera-card__no { font-family: var(--font-head); font-size: 1.15rem; font-weight: 400; color: var(--ink); letter-spacing: 0.08em; word-break: break-all; }
.rera-card__note { display: block; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.rera-foot {
  display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  border: 1px solid var(--line); padding: 22px 24px; background: var(--cream);
}
.rera-foot p { font-size: 0.9rem; color: var(--muted); margin: 0; max-width: 640px; }
.rera-foot a.btn { flex-shrink: 0; }

/* Soft "on request" pill */
.pill-soft {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid var(--line); padding: 5px 12px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream-2); }
.faq__inner { max-width: 900px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { background: transparent; border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0;
  font-weight: 400; color: var(--ink); font-size: 0.98rem; letter-spacing: 0.02em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  position: relative; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px;
  font-size: 1.3rem; color: var(--gold-1); font-weight: 300;
  transition: transform 0.3s var(--ease); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 40px 26px 0; color: var(--muted); font-size: 0.96rem; line-height: 1.8; }

/* ---------- Contact ---------- */
.contact { background: var(--pl-900); color: var(--ink); border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
.contact__lead { color: var(--muted); margin-bottom: 32px; font-size: 1rem; line-height: 1.8; }
.contact__details { list-style: none; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.contact__details li { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--line); color: var(--gold-1);
  display: grid; place-items: center; font-size: 1rem;
}
.contact__details strong { display: block; color: var(--muted); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 6px; }
.contact__details div { color: var(--ink); font-size: 0.98rem; }
.contact__details a:hover { color: var(--gold-2); }

.contact__form { background: var(--cream); color: var(--ink); border: 1px solid var(--line); padding: 34px 26px 36px; }
.contact__form h3 { font-family: var(--font-head); font-weight: 400; font-size: 0.95rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 26px; }
.field { margin-bottom: 14px; }
.contact__form input, .contact__form select, .contact__form textarea,
.modal__form input, .modal__form select {
  width: 100%; padding: 15px 16px; min-height: 48px;
  border: 1px solid var(--line); border-radius: 0;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--pl-900); transition: border-color 0.25s, background 0.25s;
  appearance: none;
}
.contact__form textarea { min-height: 92px; }
.contact__form input::placeholder, .contact__form textarea::placeholder,
.modal__form input::placeholder { color: #8A9099; }
.contact__form select, .modal__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%239BA1A9' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus,
.modal__form input:focus, .modal__form select:focus {
  outline: none; border-color: var(--gold-1); background: var(--pl-800);
}
.form-note { color: var(--gold-2); font-weight: 500; margin-top: 16px; text-align: center; font-size: 0.9rem; }
.form-fineprint { font-size: 0.72rem; color: var(--muted); margin-top: 16px; text-align: center; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer { background: var(--pl-900); color: var(--muted); padding-top: 68px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 38px; padding-bottom: 48px; }
.footer__brand p { font-size: 0.92rem; line-height: 1.8; margin-top: 18px; }
.footer__wordmark {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  color: var(--ink); font-size: 1.15rem; letter-spacing: 0.26em; display: block;
}
.footer__wordmark b { display: block; font-size: 0.56rem; letter-spacing: 0.42em; color: var(--gold-3); font-weight: 400; margin-top: 9px; }
.footer__rera { display: inline-block; margin-top: 18px; color: var(--gold-2); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer__socials { margin-top: 24px; }
.footer__socials-label { display: block; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: #8A9099; margin-bottom: 10px; }
.footer__social { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 0.88rem; transition: color 0.25s; min-height: 44px; }
.footer__social svg { flex-shrink: 0; }
.footer__social:hover { color: var(--gold-2); }
.footer__col h4 { color: var(--ink); font-family: var(--font-head); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 12px; }
.footer__col a { display: block; padding: 11px 0; font-size: 0.9rem; transition: color 0.25s; border-bottom: 1px solid rgba(42, 46, 52, 0.7); }
.footer__col a:hover { color: var(--ink); }
.footer__addr { font-size: 0.9rem; margin: 12px 0; line-height: 1.75; }
.footer__bar { border-top: 1px solid var(--line); padding: 22px 0; font-size: 0.78rem; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__legal a { display: inline-block; padding: 6px 8px; }
.footer__legal a:hover { color: var(--ink); }
.footer__disclaimer { font-size: 0.72rem; color: #8A9099; padding-bottom: 34px; line-height: 1.75; }

/* ---------- Floating WhatsApp ---------- */
.float {
  position: fixed; z-index: 90; right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  display: grid; place-items: center; color: #0A0B0D;
  transition: transform 0.3s var(--ease);
}
.float:hover { transform: scale(1.06); }
.float--wa { background: #25d366; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta.show { transform: translateY(0); }
.mcta {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 56px; padding: 10px 6px 11px; border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--font-body); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: var(--pl-900);
}
.mcta svg { display: block; }
.mcta--wa { background: var(--pl-800); color: #7fe0a3; }
.mcta--enquire { background: var(--ink); color: var(--pl-900); }
.mcta:active { filter: brightness(1.2); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6, 7, 9, 0.86); backdrop-filter: blur(4px); animation: fade 0.3s; }
.modal__dialog {
  position: relative; background: var(--cream-2); border: 1px solid var(--line);
  width: min(440px, 100%); padding: 34px 24px 30px; box-shadow: var(--shadow);
  animation: pop 0.35s var(--ease);
  max-height: 92svh; overflow-y: auto;
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(18px); } }
.modal__close {
  position: absolute; top: 8px; right: 8px; background: transparent; border: 0;
  font-size: 1.5rem; line-height: 1; color: var(--muted); cursor: pointer;
  width: 44px; height: 44px; display: grid; place-items: center;
}
.modal__close:hover { color: var(--ink); }
.modal__head { margin-bottom: 24px; padding-right: 40px; }
.modal__head h3 { font-family: var(--font-head); font-weight: 400; font-size: 0.95rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.modal__head p { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 10px; }
.modal__form { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(6, 7, 9, 0.96); padding: 24px; }
.lightbox.open { display: flex; animation: fade 0.3s; }
.lightbox img { max-width: 92vw; max-height: 84vh; border: 1px solid var(--line); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: transparent; border: 1px solid rgba(237, 233, 225, 0.3);
  color: var(--ink); cursor: pointer;
  width: 48px; height: 48px; font-size: 1.5rem; display: grid; place-items: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--ink); color: var(--pl-900); border-color: var(--ink); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Spoke pages (shared shell, used from stage 2 onwards)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; color: var(--ink); padding: 74px 0 62px; background: var(--pl-900); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--ph, linear-gradient(160deg, var(--pl-700), var(--pl-900))); background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(6,7,9,0.94) 0%, rgba(6,7,9,0.78) 46%, rgba(6,7,9,0.55) 100%); }
.page-hero .container { position: relative; z-index: 2; max-width: 940px; }
.page-hero .breadcrumb { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.page-hero .breadcrumb a:hover { color: var(--ink); }
.page-hero h1 { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.55rem, 3.6vw, 2.55rem); line-height: 1.2; letter-spacing: var(--track-display); text-transform: uppercase; color: var(--ink); }
.page-hero p.sub { margin-top: 20px; font-size: 1rem; color: var(--muted); max-width: 680px; line-height: 1.8; }
.rich { max-width: 900px; }
.rich > p, .rich > ul, .rich > ol { color: var(--muted); font-size: 1rem; line-height: 1.85; margin-bottom: 20px; }
.rich h2 { font-family: var(--font-head); font-weight: 400; font-size: 1.1rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin: 44px 0 16px; }
.rich h3 { font-family: var(--font-head); font-weight: 400; font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin: 28px 0 10px; }
.rich ul, .rich ol { padding-left: 22px; }
.rich li { margin-bottom: 10px; line-height: 1.8; }
.rich strong { color: var(--ink); font-weight: 500; }
.rich a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 4px; }
.costsheet { width: 100%; border-collapse: collapse; margin: 8px 0 26px; background: var(--cream-2); border: 1px solid var(--line); }
.costsheet th, .costsheet td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 0.94rem; vertical-align: top; }
.costsheet th { background: var(--pl-800); color: var(--ink); font-weight: 500; width: 40%; }
.costsheet td { color: var(--muted); }
.costsheet tr:last-child td, .costsheet tr:last-child th { border-bottom: 0; }
.cta-band { background: var(--pl-900); border: 1px solid var(--line); color: var(--ink); padding: 34px 28px; text-align: center; margin-top: 34px; max-width: 900px; }
.cta-band h3 { font-family: var(--font-head); font-weight: 400; font-size: 0.95rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.cta-band p { color: var(--muted); margin-bottom: 22px; font-size: 0.95rem; }
.mapwrap { margin: 10px 0 22px; overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.mapwrap iframe { width: 100%; height: 340px; border: 0; }
.explore { background: var(--cream-2); }
.explore-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.explore-card { display: block; background: var(--cream); padding: 22px; transition: background 0.3s; }
.explore-card:hover { background: var(--pl-800); }
.explore-card h4 { font-family: var(--font-head); font-weight: 400; color: var(--ink); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.explore-card span { color: var(--muted); font-size: 0.88rem; }
.fp-figure { background: var(--cream-2); border: 1px solid var(--line); padding: 16px; cursor: zoom-in; margin: 8px 0 28px; max-width: 900px; }
.fp-figure figcaption { margin-top: 14px; text-align: center; color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   Responsive. Mobile-first, so these are enhancements upward.
   360px is the design canvas.
   ============================================================ */

@media (min-width: 481px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 34px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 721px) {
  .tband__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tnum { padding-right: 26px; }
  .configs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity-detail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 44px; }
  .explore-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact__form { padding: 40px 34px 42px; }
}

@media (min-width: 861px) {
  .about__grid { grid-template-columns: 0.92fr 1.08fr; gap: 60px; }
  .about--flip .about__media { order: 2; }
  .stack-wrap { grid-template-columns: 300px 1fr; gap: 60px; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .explore-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; }
  .hero { align-items: center; }
  .hero__content { padding: 60px 0; }
  .configs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .section__head { display: grid; grid-template-columns: 1.4fr 1fr; column-gap: 56px; align-items: end; max-width: none; }
  .section__head.center { display: block; }
  .section__head .idx { grid-column: 1; }
  .section__head .eyebrow { grid-column: 1; }
  .section__head .section__title { grid-column: 1; }
  .section__head .section__sub { grid-column: 2; align-self: end; margin: 0 0 6px; }
  .stack-wrap { grid-template-columns: 340px 1fr; gap: 80px; }
}

/* ---- Mobile-only behaviour ---- */
@media (max-width: 860px) {
  .mobile-cta { display: grid; }
  .float--wa { display: none; }
  .footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }

  /* Filters create a containing block, which breaks the fixed drawer */
  .header, .header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }

  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(84%, 340px); max-width: 100vw;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; background: var(--pl-900); padding: 92px 26px 40px;
    transform: translateX(100%); transition: transform 0.4s var(--ease), visibility 0.4s;
    border-left: 1px solid var(--line); z-index: 99;
    visibility: hidden; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav__close {
    display: grid; place-items: center;
    position: absolute; top: 14px; right: 14px;
    width: 44px; height: 44px;
    background: transparent; color: var(--ink); border: 1px solid var(--line);
    font-size: 1.5rem; line-height: 1; cursor: pointer;
  }
  .nav__close:hover { background: var(--ink); color: var(--pl-900); }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 98;
    background: rgba(6, 7, 9, 0.7);
    opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .nav__link { font-size: 0.82rem; padding: 16px 0; width: 100%; border-bottom: 1px solid var(--line); min-height: 44px; display: flex; align-items: center; }
  .nav__link--mobile-cta { color: var(--ink); }
  .nav-toggle { display: flex; }
  .btn--phone span { display: none; }
  .btn--phone { width: 44px; min-width: 44px; height: 44px; min-height: 44px; padding: 0; justify-content: center; }
  .header__inner { gap: 10px; min-height: 68px; }
  .header__actions { gap: 8px; }
}

@media (max-width: 600px) {
  .topbar__contact a:last-child { display: none; }
  .topbar__sep { display: none; }
  .topbar__rera .t-full { display: none; }
  .topbar__rera .t-short { display: inline; }
  .topbar__inner { font-size: 0.62rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .location__cta { padding: 28px 20px; }
  .location__cta .btn { width: 100%; }
  .rera-foot .btn { width: 100%; }
}

@media (max-width: 480px) {
  .header__actions .btn--gold { display: none; }
  /* Keep the locality line on one row so the wordmark never outgrows the header */
  .brand__city { letter-spacing: 0.22em; font-size: 0.5rem; white-space: nowrap; margin-top: 7px; }
  .hero__eyebrow { letter-spacing: 0.24em; font-size: 0.6rem; }
  .hero__title { letter-spacing: 0.14em; }
  .section__title { letter-spacing: 0.14em; }
  .page-hero h1 { letter-spacing: 0.14em; }
  .config-card__body { padding: 26px 20px 28px; }
  .amenity-block { padding: 28px 20px 30px; }
  .rera-card { padding: 26px 18px; }
  .stack__floor { grid-template-columns: 34px 1fr; gap: 9px; padding: 0 10px; }
  .stack__tag { right: 10px; font-size: 0.5rem; letter-spacing: 0.14em; padding: 3px 6px; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 1.5rem; }
  .section__title { font-size: 1.4rem; }
}

/* ---- Keyboard focus ---- */
.btn:focus-visible,
.nav__link:focus-visible,
.footer__col a:focus-visible,
.footer__legal a:focus-visible,
.footer__social:focus-visible,
.topbar__contact a:focus-visible,
.explore-card:focus-visible,
.rich a:focus-visible,
.g-item:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   IDENTITY LAYER: "Monograph"
   Vedant Mayfair only. This replaces the fork parent's identity
   layer outright. Oversized numerals, hairline rules, generous
   whitespace, platinum on graphite, zero gold.
   ============================================================ */

/* 1. Oversized numeral treatment, the recurring display device */
.figure-xl {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(3.2rem, 12vw, 7rem);
  line-height: 0.88; letter-spacing: -0.01em;
  color: var(--ink); font-variant-numeric: tabular-nums;
  display: block;
}
.figure-xl i { font-style: normal; font-size: 0.26em; letter-spacing: 0.2em; color: var(--muted); margin-left: 10px; vertical-align: 0.9em; }
.figure-cap { display: block; margin-top: 18px; font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }

/* 2. The measure block: RERA carpet and total carpet, plainly labelled */
.measure { background: var(--pl-900); border-block: 1px solid var(--line); }
.measure__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.measure__cell { padding: 34px 0; border-top: 1px solid var(--line); }
.measure__type { display: block; font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 22px; }
.measure__rows { list-style: none; }
.measure__rows li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.measure__rows li:last-child { border-bottom: 0; }
.measure__rows .k { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.measure__rows .v { font-family: var(--font-head); font-weight: 300; font-size: 1.45rem; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1; white-space: nowrap; }
.measure__rows .v small { font-size: 0.46em; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 8px; }
@media (min-width: 721px) {
  .measure__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 48px; }
}

/* 3. Plate: a light-ground frame for the architect's drawing, so the
   line-work reads the way it does on paper inside the dark book. */
.plate { border: 1px solid var(--line); background: var(--cream-2); padding: 14px; }
.plate img { width: 100%; background: #F4F2EE; }
.plate figcaption {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}

/* 4. Bare-shell statement band */
.statement { background: var(--cream); border-block: 1px solid var(--line); }
.statement__inner { max-width: 920px; }
.statement q {
  display: block; quotes: none;
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1.2rem, 3.1vw, 1.95rem); line-height: 1.5;
  letter-spacing: 0.04em; color: var(--ink);
}
.statement p { margin-top: 28px; color: var(--muted); font-size: 1rem; line-height: 1.85; max-width: 660px; }

/* 5. Section index numerals, monograph chapter marks */
.section__head .idx {
  display: block; font-family: var(--font-head); font-weight: 400;
  font-size: 0.64rem; letter-spacing: 0.32em; color: var(--gold-3);
  margin-bottom: 16px;
}

/* 6. No card soup: kill any inherited radius */
.config-card, .pillar, .rera-card, .amenity-block, .contact__form,
.modal__dialog, .g-item, .explore-card, .conn-card, .plate, .btn,
.contact__form input, .contact__form select, .contact__form textarea,
.modal__form input, .modal__form select { border-radius: 0; }

/* 7. Attribution line under developer-sourced specification blocks */
.srcnote { display: block; margin-top: 24px; font-size: 0.72rem; letter-spacing: 0.06em; color: #8A9099; line-height: 1.75; }
.srcnote a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Stage 2: spoke, blog and legal page furniture.
   Mobile-first. Every grid is one column until an explicit
   breakpoint, so the 360px canvas is never wider than itself.
   ============================================================ */

/* Blog index cards */
.postgrid { display: grid; grid-template-columns: 1fr; gap: 1px; max-width: 900px; background: var(--line); border: 1px solid var(--line); }
.postcard { display: block; background: var(--cream); padding-bottom: 26px; transition: background 0.3s; }
.postcard:hover { background: var(--cream-2); }
.postcard img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); }
.postcard__body { padding: 24px 24px 0; }
.postcard__kicker {
  display: block; font-family: var(--font-head); font-weight: 400;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-3); margin-bottom: 14px;
}
.postcard h3 {
  font-family: var(--font-head); font-weight: 400; font-size: 1rem; line-height: 1.5;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
}
.postcard p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; }

/* Pull-out note: the "read this bit" block inside long-form copy */
.note {
  border-left: 2px solid var(--gold-1); background: var(--cream-2);
  padding: 22px 24px; margin: 10px 0 30px; max-width: 900px;
}
.note p { color: var(--ink); font-size: 0.96rem; line-height: 1.8; margin: 0; }
.note p + p { margin-top: 14px; }
.note strong { color: var(--gold-2); font-weight: 500; }

/* Key/value spec list, used for the floor-by-floor breakdown */
.speclist { list-style: none; padding: 0; margin: 10px 0 30px; max-width: 900px; border-top: 1px solid var(--line); }
.speclist li {
  display: flex; flex-wrap: wrap; gap: 4px 20px; justify-content: space-between;
  padding: 13px 0; margin: 0; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 0.94rem; line-height: 1.6;
}
.speclist li b { color: var(--ink); font-weight: 500; }

/* Long strings inside a 2 column spec table must wrap, never widen the page */
.rich .costsheet th, .rich .costsheet td { overflow-wrap: anywhere; }
@media (max-width: 400px) {
  .rich .costsheet th, .rich .costsheet td { padding: 12px 11px; font-size: 0.9rem; }
}

/* The rich column already caps at 900px; gallery blocks inside it match */
.rich .gallery-grid, .rich .postgrid { margin: 10px 0 30px; max-width: 900px; }

@media (min-width: 721px) {
  .postgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Blog cards: equal-height media so a 2-up row is not ragged */
.postcard img { aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }

/* Desktop nav: the wide letter-spacing must not break a label onto two lines */
@media (min-width: 861px) {
  .nav__link { white-space: nowrap; }
  .header__inner { column-gap: 18px; }
  .nav { column-gap: 20px; }
}

/* ============================================================
   Truth pass, 2026-08-01. Client sale sheet + 21 page e-brochure.
   New furniture: a published price that carries its qualifier,
   the typical floor plate, a contained render grid and the
   video stage. Mobile-first: every grid is one column until an
   explicit breakpoint, so the 360px canvas is never overflowed.
   ============================================================ */

/* A price is only true with its condition attached, so the
   qualifier lives inside the same cell as the number. */
.pricegrid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin: 10px 0 26px; max-width: 900px;
}
.pricecell { background: var(--cream-2); padding: 28px 24px 30px; }
.pricecell__type { display: block; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.pricecell__fig {
  display: block; font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1.75rem, 6vw, 2.4rem); line-height: 1;
  color: var(--ink); letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.pricecell__fig i { font-style: normal; font-size: 0.34em; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-left: 10px; vertical-align: 0.55em; }
.pricecell__qual { display: block; margin-top: 16px; font-size: 0.86rem; line-height: 1.72; color: var(--muted); }
.pricecell__qual b { color: var(--gold-2); font-weight: 500; }
.pricecell__rows { list-style: none; margin: 20px 0 0; padding: 0; border-top: 1px solid var(--line); }
.pricecell__rows li {
  display: flex; flex-wrap: wrap; gap: 4px 16px; justify-content: space-between;
  padding: 11px 0; margin: 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; color: var(--muted); line-height: 1.6;
}
.pricecell__rows li:last-child { border-bottom: 0; }
.pricecell__rows b { color: var(--ink); font-weight: 500; }

/* Two carpet measures, side by side, each one labelled. */
.carpet { width: 100%; border-collapse: collapse; margin: 8px 0 12px; background: var(--cream-2); border: 1px solid var(--line); }
.carpet th, .carpet td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); font-size: 0.94rem; vertical-align: top; }
.carpet thead th { background: var(--pl-800); color: var(--gold-2); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.carpet tbody th { color: var(--ink); font-weight: 500; }
.carpet td { color: var(--ink); font-variant-numeric: tabular-nums; }
.carpet tr:last-child td, .carpet tr:last-child th { border-bottom: 0; }
.carpet__key { display: block; font-size: 0.86rem; color: var(--muted); line-height: 1.75; margin: 0 0 28px; max-width: 900px; }
.carpet__key b { color: var(--gold-2); font-weight: 500; }
@media (max-width: 400px) { .carpet th, .carpet td { padding: 11px 9px; font-size: 0.86rem; } }

/* The typical floor plate: the best drawing in the set, so it takes
   the full column and carries a zoom affordance. */
.plate-full { background: #F4F2EE; border: 1px solid var(--line); padding: 12px; margin: 10px 0 14px; cursor: zoom-in; }
.plate-full img { width: 100%; }
.plate-full figcaption { margin-top: 12px; padding: 0 4px 4px; text-align: center; color: #4A4F57; font-size: 0.82rem; line-height: 1.6; }

/* Render grid. Native size is 650x450, so tiles are never widened
   past that: the grid adds columns instead of stretching a render. */
.renders { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 10px 0 14px; }
.render { border: 1px solid var(--line); background: var(--cream-2); overflow: hidden; cursor: zoom-in; }
.render img { width: 100%; aspect-ratio: 13 / 9; object-fit: cover; transition: transform 0.7s var(--ease); }
.render:hover img { transform: scale(1.03); }
.render figcaption { padding: 14px 16px 17px; color: var(--muted); font-size: 0.86rem; line-height: 1.62; }
.render figcaption b { display: block; color: var(--ink); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 7px; }

/* A page lifted straight out of the developer's e-brochure. */
.bplate { border: 1px solid var(--line); background: #F4F2EE; padding: 12px; margin: 10px 0 26px; cursor: zoom-in; max-width: 760px; }
.bplate img { width: 100%; }
.bplate figcaption { margin-top: 12px; padding: 0 4px 4px; text-align: center; color: #4A4F57; font-size: 0.82rem; line-height: 1.6; }

/* Video stage. The client's clip is low quality and must not run
   full width on desktop, so the frame is capped. object-fit is
   contain, never cover, so it is never stretched on a phone. */
.vstage { background: var(--pl-900); border: 1px solid var(--line); padding: 16px; margin: 10px 0 26px; }
.vstage__frame { margin-inline: auto; max-width: 820px; background: #000; }
.vstage video { display: block; width: 100%; height: auto; max-height: 74vh; object-fit: contain; background: #000; }
.vstage figcaption { margin-top: 14px; text-align: center; color: var(--muted); font-size: 0.82rem; line-height: 1.65; }

/* Credits: architect, consultants and the rest of the project team. */
.credits { list-style: none; margin: 10px 0 26px; padding: 0; max-width: 900px; border-top: 1px solid var(--line); }
.credits li { display: flex; flex-wrap: wrap; gap: 4px 20px; justify-content: space-between; padding: 14px 0; margin: 0; border-bottom: 1px solid var(--line); line-height: 1.6; }
.credits li b { color: var(--gold-2); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; }
.credits li span { color: var(--ink); font-size: 0.95rem; }

@media (min-width: 601px) { .pricegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 721px) { .renders { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .renders { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Wide tables scroll inside their own container. The page body never does. */
.tscroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 8px 0 12px; max-width: 900px; }
.tscroll .carpet { margin: 0; min-width: 440px; }

/* 360px canvas: the ledger and hero figures now carry longer strings
   ("4.40 Cr", "Jun 2030") than the bare numbers they replaced, so they
   step down before they can push the two-column grid wider than itself. */
@media (max-width: 600px) {
  .tnum strong { font-size: 1.85rem; }
  .tnum { padding-right: 14px; }
  .hero__stats strong { font-size: 1.35rem; }
  .hero__stats span { letter-spacing: 0.16em; }
}
@media (max-width: 400px) {
  .tnum strong { font-size: 1.6rem; }
  .pricecell { padding: 24px 18px 26px; }
  .pricecell__fig { font-size: 1.6rem; }
  .plate-full, .bplate { padding: 8px; }
  .vstage { padding: 12px; }
}

/* The amenity schedule is now three blocks (level 6, level 36, ground to roof)
   rather than two, so it reads as a clean row on a wide screen instead of
   2 + 1 with a hole in it. Still one column on a phone. */
@media (min-width: 1024px) { .amenity-detail { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
