Adelphi House Step inside this beautifully considered residence and discover a home where space, light, and subtle luxury come together effortlessly. From the front door, the home unfolds to a light-filled open plan living, dining and kitchen domain, anchored by a vast stone island bench and overhead pendants. Generous preparation space and seamless connection to the living areas make this kitchen equally functional and social. There is an adjoining secondary living zone, ideal as a quiet retreat for relaxing, reading or unwinding away from the main living space. Step out to a tranquil undercover alfresco area framed by greenery and exposed aggregate concrete, perfectly low-maintenance and suited to coastal entertaining. In addition to a double lock up garage, there is side access for vehicles or a caravan, and an outdoor shower for ease after beach days. Accommodation is thoughtfully positioned to provide comfort and privacy. All bedrooms feature built-in robes, ceiling fans, TV points. The master king-sized bedroom boasts a garden outlook and a beautifully appointed ensuite with twin vanity and large shower. The additional three bedrooms share access to the main bathroom with a deep freestanding bath. Set moments from the walking tracks, waterways, 3225 Café, and a short drive to the beach, shops, promenade and Point Lonsdale Lighthouse, this home delivers a relaxed and easy-maintenance coastal lifestyle ideal for a permanent residence, holiday escape or investment. Features Air Conditioning Built In Robes Dishwasher Ducted Heating First Home Buyer Fully Fenced Outdoor Entertaining Remote Garage Rumpus Room Secure Parking Split System Aircon Split System Heating Location .leaflet-pane, .leaflet-map-pane { z-index: 40; } .leaflet-top, .leaflet-bottom { z-index: 80; } // The default zoom control location is top-left, but the legacy React component had it top-right // There is no simple way to 'move' the default zoom control here, so initilizing map without it // and then adding new controls to top-right var map = L.map('map_6a576ef0f1a92', { zoomControl: false }); map.addControl( L.control.zoom({position: 'topright'}) ) map.scrollWheelZoom.disable(); // Stadiamaps as the provider L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png', { maxZoom: 20, }).addTo(map); // Create a feature group to hold the markers var markerGroup = new L.FeatureGroup(); map.addLayer(markerGroup); // Custom icon that matches legacy React component and allows for colouring const markerHtmlStyles = `background-color: #fdb813; width: 3rem; height: 3rem; display: block; left: -1.5rem; top: -1.5rem; position: relative; border-radius: 3rem 3rem 0; transform: rotate(45deg); border: 1px solid #FFFFFF`; const icon = L.divIcon({ className: "my-custom-pin", iconAnchor: [0, 24], labelAnchor: [-6, 0], popupAnchor: [0, -36], html: `<span style="${markerHtmlStyles}" />` }); // add the markers var markerOptions = { icon: icon } var marker = L.marker([-38.26174140, 144.60971340], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);