825austinave.com
Open in
urlscan Pro
15.197.234.174
Public Scan
URL:
https://825austinave.com/
Submission: On December 21 via api from BE — Scanned from DE
Submission: On December 21 via api from BE — Scanned from DE
Form analysis
2 forms found in the DOM<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="grid grid-cols-1 gap-y-4 sm:gap-x-8 md:grid-cols-2">
<div class="flex flex-col gap-2.5">
<div class="text-left">
<label for="name" class="text-left mb-2 text-bg-contrast">NAME</label>
<div class="mt-1 text-left">
<input type="text" name="name" id="name" autocomplete="name" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
focus:ring-0 focus:border-neutral-500">
<span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast">Name cannot be empty</span>
</div>
</div>
<div class="text-left">
<label for="email" class="text-left mb-2 text-bg-contrast">EMAIL</label>
<div class="mt-1 text-left">
<input id="email" name="email" type="email" autocomplete="email" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
focus:ring-0 focus:border-neutral-500" data-error-msg="Email address must be a valid address">
<span x-show="!validForm.fields.email.valid && validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast">Email cannot be empty</span>
<span x-show="!validForm.fields.email.valid && validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast">Provide a valid email address</span>
</div>
</div>
<div class="text-left">
<label for="phone-number" class="text-left mb-2 text-bg-contrast">PHONE</label>
<div class="mt-1 text-left">
<input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
focus:ring-0 focus:border-neutral-500" data-error-msg="Phone number cannot be empty">
<span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast">Phone number cannot be empty</span>
</div>
</div>
</div>
<div class="flex flex-col">
<div class="flex justify-between">
<label for="message" class="text-bg-contrast">MESSAGE</label>
</div>
<div class="mt-1 h-full text-left">
<textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full h-full border-2 border-neutral-200 py-2 px-3 resize-none
focus:outline-none focus:ring-0 focus:border-neutral-500" aria-describedby="message-max"></textarea>
<span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast">Message cannot be empty</span>
</div>
</div>
<div class="sm:flex sm:justify-center text-sm mt-2 text-bg-contrast md:col-span-2">
<p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
<a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
</div>
<div class="flex justify-center md:col-span-2">
<button type="submit" class="button-style button-label mt-1 disabled:cursor-not-allowed disabled:opacity-50
md:!px-12 w-full md:w-auto" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
</button>
</div>
</form>
<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="grid grid-cols-1 gap-y-4 sm:gap-x-8 md:grid-cols-2">
<div class="flex flex-col gap-2.5">
<div class="text-left">
<label for="name" class="text-left mb-2 text-bg-contrast">NAME</label>
<div class="mt-1 text-left">
<input type="text" name="name" id="name" autocomplete="name" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
focus:ring-0 focus:border-neutral-500">
<span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast" style="display: none;">Name cannot be empty</span>
</div>
</div>
<div class="text-left">
<label for="email" class="text-left mb-2 text-bg-contrast">EMAIL</label>
<div class="mt-1 text-left">
<input id="email" name="email" type="email" autocomplete="email" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
focus:ring-0 focus:border-neutral-500" data-error-msg="Email address must be a valid address">
<span x-show="!validForm.fields.email.valid && validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast" style="display: none;">Email cannot be empty</span>
<span x-show="!validForm.fields.email.valid && validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast" style="display: none;">Provide a valid email address</span>
</div>
</div>
<div class="text-left">
<label for="phone-number" class="text-left mb-2 text-bg-contrast">PHONE</label>
<div class="mt-1 text-left">
<input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
focus:ring-0 focus:border-neutral-500" data-error-msg="Phone number cannot be empty">
<span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast" style="display: none;">Phone number cannot be empty</span>
</div>
</div>
</div>
<div class="flex flex-col">
<div class="flex justify-between">
<label for="message" class="text-bg-contrast">MESSAGE</label>
</div>
<div class="mt-1 h-full text-left">
<textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full h-full border-2 border-neutral-200 py-2 px-3 resize-none
focus:outline-none focus:ring-0 focus:border-neutral-500" aria-describedby="message-max"></textarea>
<span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast" style="display: none;">Message cannot be empty</span>
</div>
</div>
<div class="sm:flex sm:justify-center text-sm mt-2 text-bg-contrast md:col-span-2">
<p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
<a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
</div>
<div class="flex justify-center md:col-span-2">
<button type="submit" class="button-style button-label mt-1 disabled:cursor-not-allowed disabled:opacity-50
md:!px-12 w-full md:w-auto" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
</button>
</div>
</form>
Text Content
825-827 AUSTIN AVENUE, SONOMA Toggle navigation * Home * Gallery * Features * Floor Plans * Neighborhood * Maps * Agent Info * Schedule * Contact * Home * Gallery * Features * Floor Plans * Neighborhood * Maps * Agent Info * Schedule * Contact TRECIA KNAPP PRESENTS EXCEPTIONAL SONOMA HOME $2,785,000 ALL PROPERTY PHOTOS View more PROPERTY DETAILS Bedrooms 4 Bathrooms 3.5 Square Feet 2,145 sq ft OWN A SONOMA GEM New Sophisticated Design-Interior and Exterior This luxury living artfully crafted beautifully remodeled 3-bedroom, 2.5-bathroom home + ADU showcases top-quality thoughtful finishes and contemporary design. Offering a spacious open floor plan that welcomes you with natural light and modern style. The homes features high-end materials and attention to detail throughout, making it a true standout. The property also includes an ADU in the backyard, offering endless potential for additional living space, or rental income. Whether you're looking to create a private guest suite or a home office, the possibilities are endless. Located on a picturesque, tree-lined street in one of Sonoma's most sought-after neighborhoods, this home is perfectly situated to enjoy all that Sonoma has to offer. The area boasts wide streets, lush foliage, and a tranquil creek, offering a peaceful and serene environment. For those who enjoy being close to the action, the home is just three blocks from Sonoma's vibrant Town Square, where you'll find some of the area's best world class restaurants, wine rooms, and charming shops. 825 Austin Ave, Main House (1688 Sq.Ft) * Extensive Remodel resulting in a Modern Distinguished artful home with two floors, yet optional one floor living * 3 bedrooms, 2.5 bathrooms, laundry center * Stunning high ceilings in Living and Dining Room * Artful lit niches and illuminating floor lighting throughout * Napoleon Skyline 60-inch Electric Fireplace, Black glass Front – heat or colored flames Only / Remote * Custom Kitchen with all new appliances, quartz counter tops, in-kitchen bar with pendant lights * European Oak flooring throughout * Interior custom lighting, dimmers throughout * Lush landscaping in both the front entrance as well as the back courtyard including drip irrigation * Curved iron decorative pony walls in the front yard accenting lush landscaping * Custom exterior lighting, path lights, up lighting on olive, apricot and crape myrtle trees. * Landscape lighting on dusk to dawn timer * Custom paver entry walkway leading to the front entrance * Rich dark grey concrete driveway * Exterior expansive courtyard in the back, including large concrete paver patios, designed with decorative turf inset * Large pergola extending over the dining area and trellis over the THOR outdoor kitchen, including pizza oven, rotisserie grill and stovetop * Outdoor RealFlame firepit located on large “EverNatural Premium” Pet-Friendly Turf * Beautiful stucco water fountain, up lit with striking light features * Two separate custom pedestrian entry doors built into the driveway gate, leading to the back yard and ADU 827 Austin Ave, Detached permitted ADU with separate address and mailbox (457 Sq.Ft) * 1 bedroom, 1 bathroom * Stackable Washer / dryer * Full kitchen with stainless steel appliances including new refrigerator, new electric oven, above the stove microwave, dishwasher and eat-in bar with pendant lights * Sliding patio door leading to a private courtyard for the ADU * New roof * Sprinkler system throughout FLOOR PLANS FLOOR PLAN Download SITE PLAN Download NEIGHBORHOOD Keep reading View more Trecia Knapp Sotheby's International Realty Top Producing Realtor DRE: #01412024 Mobile: 415.515.1823 trecia@treciaknapp.com www.treciaknapp.com SCHEDULE There are no upcoming events. Request an appointment GET IN TOUCH NAME Name cannot be empty EMAIL Email cannot be empty Provide a valid email address PHONE Phone number cannot be empty MESSAGE Message cannot be empty The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply. Send GET IN TOUCH NAME Name cannot be empty EMAIL Email cannot be empty Provide a valid email address PHONE Phone number cannot be empty MESSAGE Message cannot be empty The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply. Send THANK YOU! Your message has been received. We will reply using one of the contact methods provided in your submission. SORRY, THERE WAS A PROBLEM Your message could not be sent. Please refresh the page and try again in a few minutes, or reach out directly using the agent contact information below. Trecia Knapp Sotheby's International Realty Top Producing Realtor DRE: #01412024 Mobile: 415.515.1823 trecia@treciaknapp.com www.treciaknapp.com Email Us Email Us Email Us Home Agent Login Disclaimers Floor Plans:. All square footage is approximate. Floor plans, dimensions and square footage are for marketing purposes only. Schools:. Interested parties should independently verify school district availability. School attendance is not guaranteed. Information Accuracy:. Open Homes has not investigated or verified the accuracy of information on this website. Buyers are responsible for verifying all information they deem important. Contact Us Privacy Policy Terms of Use Accessibility Policy Enable High-Contrast Mode Follow us: Facebook Instagram Vimeo Twitter © 2024 Open Homes Photography Made with in California 1 / 82 1 / 85