Beachside Living Meets Architectural Brilliance Positioned in a highly sought-after pocket of Old Lonsdale, just moments from the beach, this architect-designed residence delivers an exceptional standard of coastal luxury living. Spanning two thoughtfully designed levels, the home features three generous bedrooms, each with a bathroom, plus living and accommodation zones on each floor—offering outstanding flexibility for families, guests, or multi-generational living. A private lift connects both levels, ensuring seamless accessibility throughout the home. The striking timber exterior is beautifully complemented by a robust steel frame, supporting a sun-drenched, north-facing upper deck. From here, enjoy sweeping views across the township to the serene rural pastures beyond—an ideal setting for relaxing or entertaining. Surrounded by meticulously maintained gardens, the property provides a tranquil and private retreat. A spacious double garage with additional storage completes the offering, adding practicality to this impressive home. This is a wonderful opportunity to secure a refined coastal sanctuary in one of Old Lonsdale’s most desirable locations. Features Balcony Built In Robes Deck Dishwasher Ducted Heating Floorboards Fully Fenced Gas Hot Water Service Outdoor Entertaining Remote Garage Reverse Cycle Aircon Secure Parking Study Workshop 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_6a576efd32230', { 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.27939810, 144.61320320], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);