:root {
  --purple-950: #1b0b2d;
  --purple-900: #2b124b;
  --purple-800: #3d1b68;
  --purple-700: #5f2da0;
  --purple-500: #8152c7;
  --lavender-100: #f4effb;
  --lavender-50: #faf8fd;
  --ink: #17131c;
  --muted: #665f6d;
  --line: #e4ddea;
  --beige: #e9dfcf;
  --gold: #c6a66b;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(40, 18, 70, 0.08);
  --shadow-lg: 0 28px 80px rgba(28, 10, 48, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --page: min(1180px, calc(100vw - 48px));
  --header-height: 84px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--purple-950);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 144px) 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--purple-900);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: var(--white);
  background: var(--purple-800);
  border: 1px solid var(--purple-800);
  border-radius: 10px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button:hover {
  background: var(--purple-700);
  box-shadow: 0 14px 28px rgba(59, 23, 100, 0.2);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(129, 82, 199, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 30px;
}

.button-outline {
  color: var(--purple-900);
  background: transparent;
  border-color: rgba(43, 18, 75, 0.35);
}

.button-outline:hover {
  color: var(--white);
  background: var(--purple-900);
}

.button-light {
  color: var(--purple-950);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--purple-700);
  border-color: var(--purple-700);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(51, 20, 85, 0.08);
  backdrop-filter: blur(18px);
  transition:
    height var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 190px 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 142px;
  max-height: 64px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a,
.phone-link {
  color: #352b3d;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--purple-700);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

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

.menu-toggle {
  display: none;
}

.hero {
  min-height: 780px;
  padding-top: calc(var(--header-height) + clamp(24px, 3vw, 10px));
  padding-bottom: clamp(60px, 7vw, 96px);
  background:
    radial-gradient(circle at 7% 5%, rgba(129, 82, 199, 0.12), transparent 27rem),
    linear-gradient(135deg, #fff 0%, #fff 52%, #f8f4fc 100%);
}

.hero-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-price {
  margin-bottom: 22px;
  color: var(--purple-700);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 650;
}

.unit-box {
  width: fit-content;
  margin-bottom: 34px;
  padding: 14px 18px;
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(95, 45, 160, 0.2);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-weight: 650;
}

.unit-box span {
  margin-inline: 7px;
  color: var(--purple-500);
}

.hero-art {
  position: relative;
  width: 118%;
  margin-right: -18%;
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: saturate(0.98);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 19%;
  right: 5%;
  width: 160px;
  height: 160px;
  background: rgba(129, 82, 199, 0.1);
}

.hero-orb-two {
  bottom: 6%;
  left: 38%;
  width: 90px;
  height: 90px;
  background: rgba(198, 166, 107, 0.16);
}

.proof-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid p {
  margin: 0;
  padding: 30px 28px;
  color: var(--purple-950);
  font-weight: 650;
  text-align: center;
  display: flex;
  align-items:center;
}

.proof-grid p + p {
  border-left: 1px solid var(--line);
}

.location-section {
  background: var(--lavender-50);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.location-copy h2 span {
  color: var(--purple-700);
}

.section-intro {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.25rem;
}

.distance-list {
  max-width: 520px;
  margin: 0 0 34px;
}

.distance-list div {
  display: grid;
  padding: 10px 0;
  border-bottom: 1px solid rgba(43, 18, 75, 0.12);
  grid-template-columns: 1fr auto;
  gap: 16px;
}

.distance-list dt {
  color: #3e3645;
}

.distance-list dd {
  margin: 0;
  color: var(--purple-800);
  font-weight: 700;
}

.location-map {
  margin: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.location-map img {
  width: 100%;
  aspect-ratio: 1.42;
  border-radius: calc(var(--radius-lg) - 12px);
  object-fit: cover;
}

.infrastructure-band {
  display: grid;
  margin-top: clamp(64px, 8vw, 104px);
  padding: 24px;
  background: var(--purple-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  grid-template-columns: repeat(4, 1fr);
}

.infrastructure-band p {
  margin: 0;
  padding: 12px 24px;
  color: var(--white);
  text-align: center;
}

.infrastructure-band p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.infrastructure-band strong,
.infrastructure-band span {
  display: block;
}

.infrastructure-band strong {
  margin-bottom: 5px;
  color: var(--beige);
  font-size: 1.2rem;
}

.infrastructure-band span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(46px, 7vw, 94px);
  align-items: center;
}

.story-copy h2 span {
  color: var(--purple-700);
}

.story-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-visual {
  position: relative;
  margin: 0;
}

.story-visual::before {
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -34px;
  width: 62%;
  height: 68%;
  background: var(--lavender-100);
  border-radius: var(--radius-lg);
  content: "";
}

.story-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.amenities-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(129, 82, 199, 0.24), transparent 35rem),
    linear-gradient(145deg, #140821, #2a1248 58%, #1f0e35);
}

.section-heading {
  max-width: 770px;
  margin: 0 auto clamp(46px, 6vw, 72px);
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.72);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.amenity-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.amenity-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.amenity-card div {
  padding: 24px;
}

.amenity-card h3 {
  color: var(--white);
  font-size: 1.24rem;
}

.amenity-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.possibilities-section {
  background:
    linear-gradient(180deg, #fff 0%, #faf8fd 100%);
}

.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.possibility-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.possibility-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17, 7, 29, 0.9) 100%);
  content: "";
}

.possibility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.possibility-card:hover img {
  transform: scale(1.045);
}

.possibility-card div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 22px;
}

.possibility-card h3 {
  color: var(--white);
  font-size: 1.6rem;
}

.possibility-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.persona-line {
  width: fit-content;
  margin: 34px auto 0;
  padding: 14px 22px;
  color: var(--purple-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  text-align: center;
}

.comparison-section {
  background: var(--white);
}

.comparison-grid {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison-card {
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--radius-lg);
}

.comparison-card h3 {
  margin-bottom: 28px;
}

.comparison-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid rgba(43, 18, 75, 0.1);
}

.comparison-card li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
  content: "";
}

.comparison-muted {
  background: #f4f1f5;
  border: 1px solid #e6e0e9;
}

.comparison-featured {
  color: var(--white);
  background: var(--purple-900);
  box-shadow: var(--shadow-lg);
}

.comparison-featured h3 {
  color: var(--white);
}

.comparison-featured li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.comparison-featured li::before {
  background: var(--gold);
}

.plans-section {
  text-align: center;
  background: var(--lavender-50);
}

.unit-cards {
  display: grid;
  max-width: 820px;
  margin: 0 auto 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.unit-cards article {
  display: flex;
  min-height: 155px;
  align-items: baseline;
  justify-content: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.unit-cards strong {
  color: var(--purple-800);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.unit-cards span {
  margin-left: 8px;
  color: var(--muted);
}

.plans-price {
  margin-bottom: 24px;
  color: var(--purple-950);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 700;
}

.floor-plan {
  max-width: 1020px;
  margin: 56px auto 24px;
}

.floor-plan button {
  position: relative;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.floor-plan img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 12px);
}

.floor-plan span {
  position: absolute;
  right: 28px;
  bottom: 26px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(27, 11, 45, 0.86);
  border-radius: 999px;
  font-size: 0.82rem;
}

.legal-note {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
}

.progress-section {
  color: var(--white);
  background: var(--purple-950);
}

.progress-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
  gap: clamp(46px, 7vw, 90px);
  align-items: center;
}

.progress-copy h2 {
  color: var(--white);
}

.progress-copy p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.progress-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.progress-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0812;
  object-fit: cover;
}

.gallery-section {
  background: var(--white);
}

.gallery-heading {
  display: flex;
  margin-bottom: 38px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.gallery-heading h2 {
  margin: 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filters button,
.gallery-controls button {
  padding: 9px 15px;
  color: var(--purple-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.gallery-filters button.is-active {
  color: var(--white);
  background: var(--purple-900);
  border-color: var(--purple-900);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  min-width: 0;
}

.gallery-item button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item button:hover img {
  transform: scale(1.04);
}

.gallery-video {
  grid-column: 1 / -1;
}

.gallery-video video {
  width: 100%;
  max-height: 620px;
  background: var(--purple-950);
  border-radius: var(--radius-md);
}

.gallery-controls {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.gallery-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.developer-section {
  min-height: 700px;
  color: var(--white);
  background:
    var(--purple-950) url("https://ambrosiastudios.in/assets/images/developer-trust.webp") center / cover no-repeat;
}

.developer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 5, 20, 0.94) 0%, rgba(20, 8, 35, 0.84) 40%, rgba(20, 8, 35, 0.1) 74%),
    linear-gradient(0deg, rgba(16, 7, 28, 0.38), transparent 60%);
}

.developer-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
}

.developer-copy h2,
.developer-copy p {
  max-width: 610px;
}

.developer-copy h2 {
  color: var(--white);
}

.developer-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
}

.faq-section {
  background: var(--lavender-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-heading p {
  color: var(--muted);
}

.faq-list details {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-list details:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.faq-list summary {
  position: relative;
  padding: 24px 60px 24px 26px;
  color: var(--purple-950);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--purple-700);
  content: "+";
  font-size: 1.45rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 60px 24px 26px;
  margin: 0;
  color: var(--muted);
}

.enquiry-section {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(198, 166, 107, 0.18), transparent 22rem),
    linear-gradient(135deg, var(--purple-900), var(--purple-950));
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.enquiry-copy h2 {
  color: var(--white);
}

.enquiry-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form-standalone {
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: #382c41;
  font-size: 0.84rem;
  font-weight: 650;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9d0df;
  border-radius: 10px;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #a72548;
}

.field-error {
  min-height: 18px;
  color: #a72548;
  font-size: 0.74rem;
}

.form-submit,
.form-status,
.consent-copy {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-status,
.consent-copy {
  margin: 0;
}

.form-status {
  min-height: 20px;
  color: var(--purple-800);
  font-size: 0.86rem;
  font-weight: 600;
}

.consent-copy {
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 20px;
  color: rgba(255, 255, 255, 0.7);
  background: #11091a;
}

.footer-grid {
  display: grid;
  padding-bottom: 46px;
  grid-template-columns: 1fr 0.85fr 1.15fr;
  gap: 60px;
}

.footer-brands {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-brands img {
  width: 152px;
  padding: 8px;
  background: var(--white);
  border-radius: 10px;
  object-fit: contain;
}

.footer-brands img:last-child {
  width: 122px;
}

.footer-brands span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact address {
  font-style: normal;
}

.rera-link img {
  width: min(360px, 100%);
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
}

.social-links {
  display: flex;
  gap: 18px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: var(--beige);
}

.sticky-cta {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 20px;
  display: flex;
  padding: 7px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 15px 44px rgba(29, 12, 50, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  backdrop-filter: blur(16px);
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta .button {
  min-width: 148px;
}

.lead-dialog,
.lightbox {
  width: min(660px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lead-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(15, 6, 26, 0.72);
  backdrop-filter: blur(5px);
}

.lead-dialog {
  padding: clamp(26px, 5vw, 48px);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--purple-900);
  background: var(--lavender-100);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  place-items: center;
}

.dialog-copy {
  margin-bottom: 28px;
  text-align: center;
}

.dialog-copy img {
  width: 110px;
  margin: 0 auto 14px;
}

.dialog-copy h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.dialog-copy p {
  max-width: 460px;
  margin: 0 auto;
  color: var(--muted);
}

.lightbox {
  width: min(1300px, calc(100vw - 32px));
  background: #0f0718;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 40px);
  object-fit: contain;
}

.lightbox .dialog-close {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: 130px 0 90px;
  background: var(--lavender-50);
}

.legal-card {
  max-width: 880px;
  padding: clamp(30px, 5vw, 64px);
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  padding: 40px 24px;
  background:
    radial-gradient(circle at 70% 10%, rgba(129, 82, 199, 0.18), transparent 30rem),
    linear-gradient(135deg, #fff, var(--lavender-50));
  place-items: center;
}

.thank-you-card {
  width: min(620px, 100%);
  padding: clamp(32px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thank-you-card img {
  width: 150px;
  margin: 0 auto 24px;
}

.thank-you-card h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.thank-you-card p {
  color: var(--muted);
}

.thank-you-actions {
  display: flex;
  margin-top: 28px;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1100px) {
  :root {
    --page: min(940px, calc(100vw - 40px));
  }

  .header-inner {
    grid-template-columns: 160px 1fr auto;
  }

  .primary-nav {
    gap: 17px;
  }

  .phone-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  }

  .hero-art {
    width: 110%;
    margin-right: -10%;
  }

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

  .possibilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .possibility-card {
    min-height: 420px;
  }

  .progress-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding-block: 86px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-link img {
    width: 126px;
    max-height: 58px;
  }

  .menu-toggle {
    z-index: 2;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 11px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--purple-900);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 10px 8px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-grid,
  .location-grid,
  .story-grid,
  .progress-grid,
  .faq-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    text-align: center;
  }

  .unit-box {
    margin-inline: auto;
  }

  .hero-art {
    width: 100%;
    margin: 0;
  }

  .proof-grid,
  .infrastructure-band {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid p:nth-child(3),
  .infrastructure-band p:nth-child(3) {
    border-left: 0;
  }

  .proof-grid p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .infrastructure-band p:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .location-map {
    grid-row: 1;
  }

  .story-visual {
    grid-row: 1;
    max-width: 720px;
    margin-inline: auto;
  }

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

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

  .progress-media {
    grid-row: 1;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-carousel {
    grid-template-columns: 1fr 1fr;
  }

  .developer-section {
    min-height: 620px;
    background-position: 64% center;
  }

  .developer-overlay {
    background: linear-gradient(90deg, rgba(11, 5, 20, 0.95), rgba(20, 8, 35, 0.76) 72%, rgba(20, 8, 35, 0.35));
  }

  .faq-heading {
    position: static;
  }

  .enquiry-grid {
    gap: 38px;
  }

  .enquiry-copy {
    text-align: center;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100% - 28px, 540px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .section {
    padding-block: 72px;
  }

  .hero-copy h1 {
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-price {
    font-size: 1.28rem;
  }

  .hero-art img {
    border-radius: var(--radius-md);
  }

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

  .proof-grid p {
    padding: 22px 18px;
  }

  .proof-grid p + p,
  .proof-grid p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .infrastructure-band {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .infrastructure-band p + p,
  .infrastructure-band p:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .story-visual::before {
    top: -14px;
    right: -14px;
  }

  .amenities-grid,
  .possibilities-grid,
  .unit-cards,
  .gallery-carousel,
  .lead-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card div {
    padding: 22px;
  }

  .possibility-card {
    min-height: 510px;
  }

  .persona-line {
    border-radius: var(--radius-md);
  }

  .comparison-card {
    padding: 28px 24px;
  }

  .unit-cards article {
    min-height: 112px;
  }

  .floor-plan {
    margin-top: 42px;
  }

  .floor-plan span {
    right: 20px;
    bottom: 18px;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    width: calc(100vw - 28px);
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .gallery-filters button {
    flex: 0 0 auto;
  }

  .gallery-controls {
    justify-content: space-between;
  }

  .developer-section {
    min-height: 720px;
    padding-bottom: 60px;
    background-position: 72% center;
  }

  .developer-copy {
    min-height: 560px;
    justify-content: flex-end;
  }

  .developer-overlay {
    background: linear-gradient(0deg, rgba(11, 5, 20, 0.98) 0%, rgba(20, 8, 35, 0.82) 58%, rgba(20, 8, 35, 0.24) 100%);
  }

  .faq-list summary {
    padding-right: 50px;
  }

  .faq-list summary::after {
    right: 20px;
  }

  .faq-list details p {
    padding-right: 26px;
  }

  .form-submit,
  .form-status,
  .consent-copy {
    grid-column: auto;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
  }

  .sticky-cta .button {
    min-width: 0;
    padding-inline: 14px;
  }

  .lead-dialog {
    width: calc(100vw - 20px);
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .dialog-copy img {
    width: 96px;
  }

  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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