:root {
  --white: #f7f1e8;
  --soft-white: rgba(247, 241, 232, 0.82);
  --line: rgba(247, 241, 232, 0.42);
  --dark: #11110f;
  --paper: #eee8de;
  --ink: #1a1a17;
  --muted: #68645c;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Montserrat, Verdana, system-ui, sans-serif;
  --theme-green: #e6f7ec;
  --theme-green-dark: #0b3f2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0b1612;
  color: var(--ink);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: #11110f;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(14, 14, 12, 0.38) 0%, rgba(14, 14, 12, 0.06) 29%, rgba(14, 14, 12, 0.12) 55%, rgba(14, 14, 12, 0.8) 100%),
    linear-gradient(90deg, rgba(14, 14, 12, 0.36) 0%, rgba(14, 14, 12, 0.02) 40%, rgba(14, 14, 12, 0.38) 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 24%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(4, 4, 4, 0.78));
  pointer-events: none;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 680ms ease-in-out, transform 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  display: block;
}

.hero-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 28px;
  padding: 36px 42px 0;
  text-transform: uppercase;
}

.nav-left,
.nav-right {
  display: flex;
  gap: clamp(28px, 3vw, 46px);
  align-items: center;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(14px, 1vw, 21px);
  font-weight: 500;
  letter-spacing: 3.5px;
  line-height: 1;
  white-space: nowrap;
}

.nav-right {
  justify-content: flex-end;
}

.brand-lockup {
  display: flex;
  justify-content: center;
  min-width: 360px;
  margin-top: 1px;
  line-height: 1;
}

.brand-lockup img {
  display: block;
  width: clamp(245px, 19vw, 375px);
  height: auto;
  opacity: 0.94;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: absolute;
  inset: auto 42px 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 44px);
  width: min(100%, calc(100% - 84px));
}

.hero-content h1 {
  max-width: min(920px, 72vw);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 7vw, 140px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.82;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
  display: block;
  margin-top: 0.16em;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
}

.hero-cta {
  display: grid;
  place-items: center;
  width: min(100%, 340px);
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid var(--line);
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-cta:hover {
  background: rgba(255, 250, 241, 0.9);
  color: var(--dark);
  border-color: rgba(255, 250, 241, 0.9);
}

.about-page,
.location-page,
.contact-page,
.enquiry-section {
  padding-inline: clamp(24px, 6vw, 96px);
}

.about-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(500px, 1fr) minmax(270px, 0.58fr);
  gap: clamp(22px, 2.5vw, 48px);
  align-items: center;
  min-height: 100svh;
  padding-inline: clamp(22px, 3vw, 56px);
  padding-top: clamp(52px, 7vw, 98px);
  padding-bottom: clamp(58px, 7vw, 104px);
  overflow: hidden;
  background: #0b1612;
  color: var(--white);
}

.about-label {
  position: absolute;
  top: 18px;
  left: clamp(16px, 1.4vw, 28px);
  margin: 0;
  color: rgba(247, 241, 232, 0.78);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-page h2 {
  margin: 0;
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(52px, 4.1vw, 78px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-image {
  align-self: center;
  justify-self: center;
  width: min(100%, 860px);
  margin: 0;
}

.about-image img {
  display: block;
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  object-position: center;
}

.about-copy {
  align-self: start;
  max-width: 385px;
  margin-top: 8px;
}

.about-copy p {
  margin: 0;
  color: rgba(247, 241, 232, 0.9);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
}

.about-copy p + p {
  margin-top: 34px;
}

.section-reveal {
  --reveal-distance: 44px;
}

.about-label,
.about-page h2,
.about-image,
.about-copy p,
.metric,
.location-copy,
.location-visual,
.contact-card,
.enquiry-inner,
.insights-page::before,
.insights-page::after {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-page h2 {
  --reveal-distance: 58px;
}

.about-image {
  --reveal-distance: 34px;
  transform: translateY(var(--reveal-distance)) scale(0.965);
  transition-duration: 1000ms;
}

.about-copy p {
  --reveal-distance: 36px;
}

.section-reveal.is-visible .about-label,
.section-reveal.is-visible h2,
.section-reveal.is-visible .about-image,
.section-reveal.is-visible .about-copy p,
.section-reveal.is-visible .metric,
.section-reveal.is-visible .location-copy,
.section-reveal.is-visible .location-visual,
.section-reveal.is-visible .contact-card,
.section-reveal.is-visible::before,
.section-reveal.is-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal.is-visible .about-image {
  transform: translateY(0) scale(1);
}

.section-reveal.is-visible .about-copy p:first-child {
  transition-delay: 170ms;
}

.section-reveal.is-visible .about-copy p:nth-child(2) {
  transition-delay: 310ms;
}

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

.enquiry-inner {
  --reveal-distance: 54px;
  transition-delay: 160ms;
}

.insights-page {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px clamp(32px, 5vw, 80px);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(28px, 6vw, 88px);
  align-content: center;
  background: #0b1612;
  color: var(--white);
}

.insights-page::before,
.insights-page::after {
  display: none;
}

.metric {
  color: var(--white);
  --reveal-distance: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(96px, 10vw, 190px);
  font-weight: 400;
  letter-spacing: -6px;
  line-height: 0.84;
}

.metric strong span {
  margin-left: 10px;
  color: rgba(247, 241, 232, 0.72);
  font-size: 0.28em;
  letter-spacing: 0;
  vertical-align: 0.18em;
}

.metric p {
  max-width: 290px;
  margin: 28px 0 0;
  color: rgba(247, 241, 232, 0.9);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.22;
}

.metric-one {
  transition-delay: 120ms;
}

.metric-two {
  transition-delay: 240ms;
}

.metric-three {
  transition-delay: 360ms;
}

.metric-four {
  transition-delay: 480ms;
}

.location-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(460px, 0.6fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: 100svh;
  padding-block: clamp(56px, 8vw, 108px);
  background: #0b1612;
  color: #ffffff;
}

.location-copy {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  padding-left: clamp(28px, 3.2vw, 46px);
}

.location-copy h2 {
  margin: 0 0 clamp(32px, 4.5vw, 52px);
  font-family: var(--serif);
  font-size: clamp(44px, 4.4vw, 76px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-transform: uppercase;
}

.location-copy p {
  margin: 0;
  max-width: 440px;
  color: #cccccc;
  font-family: var(--sans);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.58;
}

.location-map {
  width: 100%;
  max-width: 440px;
  margin-top: clamp(28px, 3.5vw, 40px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(var(--reveal-distance, 44px));
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(18%) contrast(1.04);
}

.location-map-link {
  display: inline-block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.location-map-link:hover {
  color: #ffffff;
}

.section-reveal.is-visible .location-map {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}

.location-visual {
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(var(--reveal-distance, 44px));
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.location-visual img {
  display: block;
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: cover;
  object-position: center top;
}

.projects-page {
  position: relative;
  overflow: hidden;
  background: #0b1612;
  color: var(--white);
  padding: clamp(60px, 8vw, 120px) 0;
}

.projects-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.projects-heading {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
}

.projects-desc {
  margin: 0 auto 48px;
  max-width: 560px;
  color: rgba(247, 241, 232, 0.55);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

.projects-img-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.projects-img-card a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.projects-img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.projects-img-card a:hover img {
  transform: scale(1.04);
}

.projects-name {
  display: block;
  margin-top: 12px;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.project-detail-main {
  min-height: 100svh;
  background: #f7f7f5;
  color: #111111;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 56px) clamp(48px, 6vw, 88px);
}

.project-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 56px);
  color: rgba(17, 17, 17, 0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms ease;
}

.project-detail-back:hover {
  color: #111111;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: clamp(32px, 5vw, 72px);
  max-width: 1200px;
}

.project-detail-media {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e8e4;
}

.project-detail-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}

.project-detail-info {
  padding-top: 12px;
}

.project-detail-info h1 {
  margin: 0 0 clamp(24px, 3vw, 40px);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
}

.project-detail-meta {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(28px, 3vw, 40px);
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.detail-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-meta-label {
  color: rgba(17, 17, 17, 0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.detail-meta-value {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
}

.project-detail-description {
  margin: 0 0 clamp(28px, 3vw, 40px);
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
}

.project-detail-cta {
  display: inline-grid;
  place-items: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid rgba(17, 17, 17, 0.88);
  color: #111111;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}

.project-detail-cta:hover {
  background: #111111;
  color: #ffffff;
}

/* Project Detail Tabs */
.project-tabs {
  margin-top: clamp(40px, 5vw, 72px);
  max-width: 1200px;
}

.project-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  margin-bottom: clamp(28px, 3vw, 44px);
}

.project-tab-btn {
  position: relative;
  padding: clamp(12px, 1.5vw, 18px) clamp(20px, 2.5vw, 36px);
  border: none;
  background: transparent;
  color: rgba(17, 17, 17, 0.42);
  font-family: var(--sans);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 280ms ease;
}

.project-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transition: transform 280ms ease;
}

.project-tab-btn:hover {
  color: rgba(17, 17, 17, 0.72);
}

.project-tab-btn.is-active {
  color: #111111;
}

.project-tab-btn.is-active::after {
  transform: scaleX(1);
}

.project-tab-panel {
  display: none;
}

.project-tab-panel.is-active {
  display: block;
}

/* RERA & Area Section */
.rera-area-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 500ms ease, transform 500ms ease;
}

.rera-area-layout:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.rera-area-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  background: #f9f9f7;
  transition: background 400ms ease;
}

.rera-area-side:hover {
  background: #f2f2ef;
}

.rera-area-left {
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.rera-area-right {
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.rera-area-side-label {
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--theme-green-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--theme-green);
  transition: letter-spacing 400ms ease, color 400ms ease;
}

.rera-area-side:hover .rera-area-side-label {
  letter-spacing: 0.18em;
}

.rera-area-side-value {
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
  line-height: 1.5;
  max-width: 200px;
  transition: color 400ms ease, transform 400ms ease;
}

.rera-area-side:hover .rera-area-side-value {
  color: var(--theme-green-dark);
  transform: scale(1.04);
}

.rera-area-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(200px, 24vw, 340px);
  flex-shrink: 0;
  padding: clamp(20px, 2.5vw, 36px);
  background: #ffffff;
  transition: background 400ms ease;
}

.rera-area-center:hover {
  background: #fafafa;
}

.rera-area-center img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(240px, 30vw, 380px);
  object-fit: contain;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease;
}

.rera-area-center:hover img {
  transform: scale(1.06) rotate(1deg);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

/* Reviews List */
.project-reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

/* Review Card */
.project-review {
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.project-review-stars {
  color: #d4a843;
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: 3px;
  margin-bottom: clamp(14px, 1.5vw, 20px);
}

.project-review-text {
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  color: rgba(17, 17, 17, 0.78);
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 20px);
  font-style: italic;
  line-height: 1.6;
}

.project-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-review-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0b3f2b;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.project-review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-review-name {
  color: #111111;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
}

.project-review-role {
  color: rgba(17, 17, 17, 0.42);
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Site Plan Tab */
.site-plan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.project-site-plan {
  border-radius: 12px;
  overflow: hidden;
  background: #e8e8e4;
}

.project-site-plan img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

/* Points List (Site Plan & Location) */
.project-tab-points {
  padding-top: 4px;
}

.project-points-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-point-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: clamp(14px, 1.5vw, 20px) 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.project-point-item:first-child {
  padding-top: 0;
}

.project-point-item:last-child {
  border-bottom: none;
}

.project-point-label {
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b3f2b;
}

.project-point-value {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.78);
}

/* Location Tab */
.project-location-detail {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 24px);
  max-width: 680px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.project-location-icon {
  flex-shrink: 0;
  color: #0b3f2b;
  margin-top: 2px;
}

.project-location-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-location-text h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  color: #111111;
  text-transform: uppercase;
}

.project-location-address {
  margin: 0;
  color: rgba(17, 17, 17, 0.65);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
}

.project-location-detail + .project-tab-points {
  margin-top: clamp(20px, 2.5vw, 32px);
}

/* Location Tab points list */
#location-points .project-point-item {
  padding: clamp(12px, 1.2vw, 18px) 0;
}

@media (max-width: 760px) {
  .project-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-detail-main {
    padding-bottom: 80px;
  }

  .project-detail-media img {
    max-height: 50vh;
  }

  .project-tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .project-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .project-tab-btn {
    white-space: nowrap;
    padding: 12px 18px;
    font-size: 12px;
  }

  .project-review {
    padding: 24px;
  }

  .project-location-detail {
    padding: 24px;
  }

  .rera-area-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rera-area-left {
    border-right: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .rera-area-right {
    border-left: none;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .rera-area-center {
    width: 100%;
    padding: 24px;
  }

  .site-plan-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-tab-points {
    padding-top: 0;
  }

  .project-point-label {
    font-size: 11px;
  }

  .project-point-value {
    font-size: 14px;
  }

  .project-location-detail + .project-tab-points {
    margin-top: 20px;
  }
}

.section-reveal.is-visible .location-copy {
  transition-delay: 120ms;
}

.section-reveal.is-visible .location-visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 240ms;
}

.memories-body {
  background: #f7f7f5;
  color: #111111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 24px clamp(18px, 3vw, 42px) 18px;
  background: rgba(247, 247, 245, 0.94);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
}

.site-header .nav-left,
.site-header .nav-right {
  color: rgba(17, 17, 17, 0.82);
}

.site-header .brand-lockup img {
  filter: brightness(0.08);
  opacity: 1;
}

.site-header a[aria-current="page"] {
  color: #111111;
  font-weight: 700;
}

.memories-page {
  min-height: calc(100svh - 88px);
  background: #f7f7f5;
  color: #111111;
}

.memories-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr) minmax(140px, 0.22fr);
  min-height: calc(100svh - 88px);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 3vw, 42px) clamp(32px, 4vw, 56px);
}

.memories-labels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8vh;
}

.memories-label {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.28);
  font-family: var(--sans);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.memories-label.is-active {
  color: #111111;
  font-weight: 700;
}

.memories-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  min-height: calc(100svh - 140px);
}

.memories-bracket {
  z-index: 3;
  border: 0;
  background: transparent;
  color: #111111;
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 300;
  line-height: 0.8;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.memories-bracket:hover {
  opacity: 0.55;
}

.memories-viewport {
  position: relative;
  height: calc(100svh - 140px);
  overflow: hidden;
}

.memories-viewport::before,
.memories-viewport::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 18%;
  content: "";
  pointer-events: none;
}

.memories-viewport::before {
  top: 0;
  background: linear-gradient(180deg, #f7f7f5 12%, rgba(247, 247, 245, 0));
}

.memories-viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, #f7f7f5 12%, rgba(247, 247, 245, 0));
}

.memories-track {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-block: 20vh;
}

.memories-track::-webkit-scrollbar {
  display: none;
}

.memories-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  margin: 0;
  padding: 1.5vh 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: transform 420ms ease, opacity 420ms ease;
  opacity: 0.34;
  transform: scale(0.9);
}

.memories-slide.is-adjacent {
  opacity: 0.58;
  transform: scale(0.95);
}

.memories-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.memories-slide-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 920px);
  max-height: min(72vh, 820px);
  overflow: hidden;
}

.memories-slide-media::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.56);
  content: "";
  transition: background 420ms ease;
  pointer-events: none;
}

.memories-slide.is-adjacent .memories-slide-media::after {
  background: rgba(8, 8, 8, 0.34);
}

.memories-slide.is-active .memories-slide-media::after {
  background: rgba(8, 8, 8, 0);
}

.memories-slide img {
  display: block;
  width: 100%;
  max-height: min(72vh, 820px);
  object-fit: contain;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.memories-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding-top: 8vh;
  text-align: right;
}

.memories-category {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.memories-tags {
  margin: 0;
  max-width: 220px;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
}

.memories-index {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mobile-bottom-nav {
  display: none;
}

.whatsapp-fab {
  position: fixed;
  right: clamp(18px, 2.4vw, 28px);
  bottom: clamp(18px, 2.4vw, 28px);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.42);
}

.enquiry-section {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 48px);
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 34, 30, 0.55) 0%, rgba(8, 14, 12, 0) 58%),
    #0a110f;
  color: #ffffff;
}

.enquiry-inner {
  width: min(100%, 920px);
  margin-inline: auto;
  text-align: center;
}

.enquiry-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.enquiry-key {
  display: flex;
  justify-content: center;
  margin: 22px 0 clamp(42px, 5vw, 58px);
  color: #b89a5a;
}

.enquiry-form {
  display: grid;
  gap: clamp(36px, 4vw, 48px);
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 42px) clamp(36px, 5vw, 72px);
  text-align: left;
}

.enquiry-field {
  display: grid;
  gap: 10px;
}

.enquiry-field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.enquiry-field input,
.enquiry-field textarea {
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  outline: none;
  resize: none;
}

.enquiry-field textarea {
  min-height: 28px;
  overflow: hidden;
}

.enquiry-field input:focus,
.enquiry-field textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.88);
}

.enquiry-field-name {
  position: relative;
}

.enquiry-input-wrap {
  position: relative;
}

.enquiry-input-wrap input {
  padding-right: 24px;
}

.enquiry-user-icon {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.enquiry-form button {
  justify-self: center;
  min-width: min(100%, 360px);
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.enquiry-form button:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #0a110f;
}

.contact-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding-block: clamp(56px, 8vw, 96px);
  background: #ffffff;
  color: #111111;
}

.contact-inner {
  width: min(100%, 980px);
  text-align: center;
}

.contact-heading {
  margin: 0 0 clamp(42px, 5vw, 58px);
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 68px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  color: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  overflow: hidden;
  padding: 20px 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: #ececea;
  color: #111111;
  text-decoration: none;
  transition:
    background 320ms ease,
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.contact-card--email {
  grid-column: 1 / -1;
  min-height: 148px;
}

.contact-card::after {
  position: absolute;
  right: -8%;
  bottom: -18%;
  z-index: 0;
  width: 58%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  content: "";
  transition: opacity 320ms ease;
  pointer-events: none;
}

.contact-card-label {
  position: relative;
  z-index: 1;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 320ms ease;
}

.contact-card-action {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.6);
  background: rgba(255, 255, 255, 0.5);
  transition:
    color 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
}

.contact-card-action--copy {
  cursor: pointer;
}

.contact-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: end;
  margin-top: auto;
  min-width: 0;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.1;
}

.contact-card-body > span:last-child {
  min-width: 0;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
}

.contact-card--phone .contact-card-body > span:last-child,
.nav-tel {
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.contact-card-icon {
  flex: 0 0 auto;
}

.contact-card--instagram:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(221, 42, 123, 0.28);
}

.contact-card--linkedin:hover {
  background: #0a66c2;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10, 102, 194, 0.28);
}

.contact-card--phone:hover {
  background: #128c7e;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.28);
}

.contact-card--email:hover {
  background: #1f1f1f;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.contact-card:hover::after {
  opacity: 1;
}

.contact-card:hover .contact-card-label {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card:hover .contact-card-action {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-card--linkedin .contact-card-icon--linkedin {
  color: #0a66c2;
}

.contact-card--linkedin:hover .contact-card-icon--linkedin {
  color: #ffffff;
}

.contact-card--linkedin:hover .contact-card-icon--linkedin path:last-child {
  stroke: #0a66c2;
}

.contact-card-action--copy[data-copied="true"] {
  transform: scale(0.94);
  background: rgba(255, 255, 255, 0.24);
}

.section-reveal.is-visible .contact-card:nth-child(1) {
  transition-delay: 80ms;
}

.section-reveal.is-visible .contact-card:nth-child(2) {
  transition-delay: 160ms;
}

.section-reveal.is-visible .contact-card:nth-child(3) {
  transition-delay: 240ms;
}

.section-reveal.is-visible .contact-card:nth-child(4) {
  transition-delay: 320ms;
}

@media (max-width: 1180px) {
  .hero-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding-top: 24px;
  }

  .brand-lockup {
    order: -1;
    min-width: 0;
  }

  .brand-lockup img {
    width: clamp(230px, 34vw, 340px);
  }

  .nav-left,
  .nav-right {
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .hero-content {
    inset-inline: 26px;
    width: min(100%, calc(100% - 52px));
    gap: 24px;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-cta {
    width: min(100%, 300px);
    min-height: 52px;
  }

  .about-page {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .about-page h2 {
    max-width: 780px;
  }

  .about-image {
    width: min(100%, 680px);
  }

  .about-copy {
    max-width: 680px;
    margin-top: 0;
  }

  .insights-page {
    gap: 52px 36px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .location-page {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-block: 88px;
  }

  .location-map {
    max-width: 100%;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .memories-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 12px;
  }

  .memories-labels {
    flex-flow: row wrap;
    gap: 10px 18px;
    padding-top: 0;
  }

  .memories-meta {
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    text-align: left;
  }

  .memories-tags {
    max-width: none;
  }

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

  .contact-card--email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 22, 18, 0.92);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-top: 1px solid rgba(247, 241, 232, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 200ms ease, transform 200ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active,
  .mobile-nav-link:focus-visible {
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
  }

  .mobile-nav-link svg {
    width: 20px;
    height: 20px;
  }

  body {
    padding-bottom: 70px;
  }

  .memories-body {
    padding-bottom: 70px;
  }

  .whatsapp-fab {
    right: max(18px, env(safe-area-inset-right, 18px));
    bottom: calc(70px + 14px);
    width: 52px;
    height: 52px;
  }

  .hero-content h1 {
    font-size: clamp(60px, 17vw, 78px);
    letter-spacing: -2px;
  }

  .hero-content h1 span {
    font-size: 0.44em;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
    min-height: 50px;
    padding-inline: 24px;
  }

  .about-page {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .about-label {
    left: 20px;
  }

  .about-page h2 {
    font-size: clamp(42px, 13vw, 62px);
    letter-spacing: -1px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .insights-page {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .metric strong {
    font-size: clamp(86px, 28vw, 128px);
    letter-spacing: -4px;
  }

  .metric p {
    margin-top: 18px;
  }

  .location-page {
    padding-block: 74px;
  }

  .location-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .memories-viewport {
    height: calc(100svh - 210px);
  }

  .memories-bracket {
    font-size: clamp(56px, 18vw, 88px);
  }

  .memories-stage {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: calc(100svh - 210px);
  }

  .memories-track {
    padding-block: 18vh;
  }

  .memories-slide {
    min-height: 54vh;
  }

  .memories-slide-media,
  .memories-slide img {
    max-height: min(62vh, 680px);
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
  }

  .enquiry-form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .enquiry-inner h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .enquiry-form button {
    width: 100%;
  }

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

  .contact-card,
  .contact-card--email {
    min-height: 188px;
  }

  .projects-page {
    min-height: auto;
    padding: 32px 0 40px;
  }

  .projects-inner {
    padding: 0 16px;
  }

  .projects-heading {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 16px;
  }

  .projects-desc {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .projects-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .projects-gallery::-webkit-scrollbar {
    display: none;
  }

  .projects-img-card {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }

  .projects-img-card a {
    border-radius: 10px;
  }

  .projects-name {
    font-size: 13px;
    margin-top: 8px;
  }

  .projects-loc {
    display: block;
    margin-top: 2px;
    color: rgba(247, 241, 232, 0.4);
    font-size: 11px;
  }
}


