southlivermorehome.com Open in urlscan Pro
15.197.234.174  Public Scan

URL: https://southlivermorehome.com/
Submission: On September 25 via api from US — Scanned from US

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 &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; 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 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 &amp;&amp; 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 &amp;&amp; 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 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

2533 WOOD HOLLOW DRIVE

Toggle navigation
 * Home
 * At a Glance
 * Text
 * Gallery
 * Summary
 * Video Tour
 * Virtual Tour
 * Floor Plan
 * Neighborhood
 * Maps
 * Agent Info
 * Contact

 * Home
 * At a Glance
 * Text
 * Gallery
 * Summary
 * Video Tour
 * Virtual Tour
 * Floor Plan
 * Neighborhood
 * Maps
 * Agent Info
 * Contact


CHARMING ONE STORY IN SOUTH LIVERMORE


$2,565,000






 * Built in 1999 
 * Approx. 3,345 Square Feet 
 * .36-Acre Lot

 



Keep reading





 * Built in 1999 
 * Approx. 3,345 Square Feet 
 * .36-Acre Lot

 



AT A GLANCE




 * 4 Bedrooms
 * 3 Bathrooms
 * 3-Car Garage


Keep reading



 * 4 Bedrooms
 * 3 Bathrooms
 * 3-Car Garage









 * Premium Lot
 * Custom Pool and Spa 
 * Spacious Driveway 



Keep reading







 * Premium Lot
 * Custom Pool and Spa 
 * Spacious Driveway 





THE ULTIMATE IN SINGLE  STORY LUXURY LIVING 

Discover the epitome of single-story luxury living in the prestigious Capistrano
neighborhood nestled in the rolling hills and lush vineyards of South Livermore.
 This elegant East-facing residence integrates traditional architecture with
modern functionality. Presenting four bedrooms, a spacious den with French
doors, and three bathrooms, this home is as comfortable as it is functional.
 
Step inside the grand foyer to find soaring 12 ft. ceilings adorned with crown
molding, a massive center rotunda, inviting formal spaces like a dining and
living room with a wood-burning fireplace, a gourmet granite kitchen with
professional-grade stainless steel appliances, a stainless-steel sink and prep
sink, and a granite center island.
 
Custom features enhance the home appeal, including made-to-order imported
Turkish travertine flooring, designer sculpted carpets, custom chandelier and
dimmable recessed lighting, crown molding, and wooden window shutters. This home
is move-in ready.
 
Outside, on a premium .36-acre lot, you’ll find a sparkling custom pool and
jetted hot tub, both with waterfall features, expansive lawn areas, an extension
of the driveway parking pad on the side yard, fruit tree orchard, custom
concrete patio spaces, storage shed, and a pergola, perfect for entertaining and
outdoor relaxation.
 
Enjoy effortless access to major commute routes like I580/HW84, the San
Francisco Premium Outlets, award-winning wineries, downtown Livermore, parks,
and schools. Welcome to your new home!
Keep reading
Discover the epitome of single-story luxury living in the prestigious Capistrano
neighborhood nestled in the rolling hills and lush vineyards of South Livermore.
 This elegant East-facing residence integrates traditional architecture with
modern functionality. Presenting four bedrooms, a spacious den with French
doors, and three bathrooms, this home is as comfortable as it is functional.
 
Step inside the grand foyer to find soaring 12 ft. ceilings adorned with crown
molding, a massive center rotunda, inviting formal spaces like a dining and
living room with a wood-burning fireplace, a gourmet granite kitchen with
professional-grade stainless steel appliances, a stainless-steel sink and prep
sink, and a granite center island.
 
Custom features enhance the home appeal, including made-to-order imported
Turkish travertine flooring, designer sculpted carpets, custom chandelier and
dimmable recessed lighting, crown molding, and wooden window shutters. This home
is move-in ready.
 
Outside, on a premium .36-acre lot, you’ll find a sparkling custom pool and
jetted hot tub, both with waterfall features, expansive lawn areas, an extension
of the driveway parking pad on the side yard, fruit tree orchard, custom
concrete patio spaces, storage shed, and a pergola, perfect for entertaining and
outdoor relaxation.
 
Enjoy effortless access to major commute routes like I580/HW84, the San
Francisco Premium Outlets, award-winning wineries, downtown Livermore, parks,
and schools. Welcome to your new home!


PROPERTY PHOTOS


View more





 * Built in 1999 by Greenbriar Homes
 * 4 beds, a den, 3 baths, 3-car garage
 * Approximately 3,345 square feet  
 * East facing .36-acre lot
 * Custom Pool and Jetted Hot Tub
 * Low-maintenance stucco with fresh exterior paint, copper accents 
 * Brick and aggregate walkway and front patio
 * Spacious front lawn areas

 * Custom stone flooring and designer sculpted carpets 
 * Soaring 12-foot ceilings with recessed lighting and crown molding 
 * Custom chandelier 
 * Dramatic center rotunda 
 * Wooden window shutters 
 * Large secondary bedrooms with ceiling fans
 * Jack and Jill bathroom 
 * Tile countertops and LVP flooring 
 * Private water closet 
 * Shower over tub configuration and a tile shower surround.

Keep reading




 * Built in 1999 by Greenbriar Homes
 * 4 beds, a den, 3 baths, 3-car garage
 * Approximately 3,345 square feet  
 * East facing .36-acre lot
 * Custom Pool and Jetted Hot Tub
 * Low-maintenance stucco with fresh exterior paint, copper accents 
 * Brick and aggregate walkway and front patio
 * Spacious front lawn areas

 * Custom stone flooring and designer sculpted carpets 
 * Soaring 12-foot ceilings with recessed lighting and crown molding 
 * Custom chandelier 
 * Dramatic center rotunda 
 * Wooden window shutters 
 * Large secondary bedrooms with ceiling fans
 * Jack and Jill bathroom 
 * Tile countertops and LVP flooring 
 * Private water closet 
 * Shower over tub configuration and a tile shower surround.

FEATURES

 * Open-concept granite kitchen with professional-grade stainless steel
   appliances
 * Thermador cooktop with grill, hood vent and heating lamps
 * Dual Fisher Paykel convection ovens 
 * Custom built-in refrigerator, and microwave 
 * Granite countertops and backsplash
 * Center island with granite top
 * Custom antique painted cabinets
 *  Butler’s pantry with granite countertop and built-in cabinets 
 * Walk-in pantry.
 * Family room with built-in entertainment center overhead surround speakers,
   access to the rear yard
 * Inviting formal dining and living room with dimmable overhead lighting 
 * Cozy wood-burning fireplace with a mantle
 * Art niches
 * Sliding doors to the rear yard. 

 * Spacious office/den with designer sculpted carpet, oversized window, and
   French doors.                            

Keep reading
 * Open-concept granite kitchen with professional-grade stainless steel
   appliances
 * Thermador cooktop with grill, hood vent and heating lamps
 * Dual Fisher Paykel convection ovens 
 * Custom built-in refrigerator, and microwave 
 * Granite countertops and backsplash
 * Center island with granite top
 * Custom antique painted cabinets
 *  Butler’s pantry with granite countertop and built-in cabinets 
 * Walk-in pantry.
 * Family room with built-in entertainment center overhead surround speakers,
   access to the rear yard
 * Inviting formal dining and living room with dimmable overhead lighting 
 * Cozy wood-burning fireplace with a mantle
 * Art niches
 * Sliding doors to the rear yard. 

 * Spacious office/den with designer sculpted carpet, oversized window, and
   French doors.                            




 * Hall bath with shell sink, shower over tub configuration, tile shower
   surround, and glass enclosure

 * Oversized master bedroom with designer sculpted carpet, crown molding, wooden
   shutters, ceiling fan, and sliding doors to the rear yard. 
 * Recently remodeled master bathroom 
 *  LVP Flooring, custom cabinets with brass hardware 
 * Marble countertops 
 * Custom backlit mirrors 
 * Large walk-in shower with bench 
 * Custom ceramic tile shower surround 
 * Pebble shower pan
 * Dual shower heads 
 * Private water closet with storage cabinets
 * Expansive .36-acre lot with custom concrete patios
 * Sparkling custom pool with waterfalls, custom lighting options, and stone
   accents
 * Jetted hot tub with water fall 
 * Large side yard/parking pad, storage shed, and small orchard.

Keep reading



 * Hall bath with shell sink, shower over tub configuration, tile shower
   surround, and glass enclosure

 * Oversized master bedroom with designer sculpted carpet, crown molding, wooden
   shutters, ceiling fan, and sliding doors to the rear yard. 
 * Recently remodeled master bathroom 
 *  LVP Flooring, custom cabinets with brass hardware 
 * Marble countertops 
 * Custom backlit mirrors 
 * Large walk-in shower with bench 
 * Custom ceramic tile shower surround 
 * Pebble shower pan
 * Dual shower heads 
 * Private water closet with storage cabinets
 * Expansive .36-acre lot with custom concrete patios
 * Sparkling custom pool with waterfalls, custom lighting options, and stone
   accents
 * Jetted hot tub with water fall 
 * Large side yard/parking pad, storage shed, and small orchard.


PROPERTY TOUR




VIRTUAL TOUR




FLOOR PLAN


FLOOR PLAN

Download


WELCOME TO LIVERMORE

Keep reading


View more


PROPERTY MAP



Doug Buenz

Luxury Specialist

DRE: #00843458 Cell: 925-621-0680



doug@680group.com



www.680homes.com

Expertise you can trust

Z

Rob Francis

Compass

DRE: #02109194 Cell: 925.623.6915



rob@680group.com



www.680homes.com


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.

Doug Buenz

Luxury Specialist

DRE: #00843458 Cell: 925-621-0680

doug@680group.com

www.680homes.com

Rob Francis

Compass

DRE: #02109194 Cell: 925.623.6915

rob@680group.com

www.680homes.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 / 0






 * Built in 1999 
 * Approx. 3,345 Square Feet 
 * .36-Acre Lot

 






 * 4 Bedrooms
 * 3 Bathrooms
 * 3-Car Garage









 * Premium Lot
 * Custom Pool and Spa 
 * Spacious Driveway 



Discover the epitome of single-story luxury living in the prestigious Capistrano
neighborhood nestled in the rolling hills and lush vineyards of South Livermore.
 This elegant East-facing residence integrates traditional architecture with
modern functionality. Presenting four bedrooms, a spacious den with French
doors, and three bathrooms, this home is as comfortable as it is functional.
 
Step inside the grand foyer to find soaring 12 ft. ceilings adorned with crown
molding, a massive center rotunda, inviting formal spaces like a dining and
living room with a wood-burning fireplace, a gourmet granite kitchen with
professional-grade stainless steel appliances, a stainless-steel sink and prep
sink, and a granite center island.
 
Custom features enhance the home appeal, including made-to-order imported
Turkish travertine flooring, designer sculpted carpets, custom chandelier and
dimmable recessed lighting, crown molding, and wooden window shutters. This home
is move-in ready.
 
Outside, on a premium .36-acre lot, you’ll find a sparkling custom pool and
jetted hot tub, both with waterfall features, expansive lawn areas, an extension
of the driveway parking pad on the side yard, fruit tree orchard, custom
concrete patio spaces, storage shed, and a pergola, perfect for entertaining and
outdoor relaxation.
 
Enjoy effortless access to major commute routes like I580/HW84, the San
Francisco Premium Outlets, award-winning wineries, downtown Livermore, parks,
and schools. Welcome to your new home!
1 / 77

1 / 0





 * Built in 1999 by Greenbriar Homes
 * 4 beds, a den, 3 baths, 3-car garage
 * Approximately 3,345 square feet  
 * East facing .36-acre lot
 * Custom Pool and Jetted Hot Tub
 * Low-maintenance stucco with fresh exterior paint, copper accents 
 * Brick and aggregate walkway and front patio
 * Spacious front lawn areas

 * Custom stone flooring and designer sculpted carpets 
 * Soaring 12-foot ceilings with recessed lighting and crown molding 
 * Custom chandelier 
 * Dramatic center rotunda 
 * Wooden window shutters 
 * Large secondary bedrooms with ceiling fans
 * Jack and Jill bathroom 
 * Tile countertops and LVP flooring 
 * Private water closet 
 * Shower over tub configuration and a tile shower surround.

 * Open-concept granite kitchen with professional-grade stainless steel
   appliances
 * Thermador cooktop with grill, hood vent and heating lamps
 * Dual Fisher Paykel convection ovens 
 * Custom built-in refrigerator, and microwave 
 * Granite countertops and backsplash
 * Center island with granite top
 * Custom antique painted cabinets
 *  Butler’s pantry with granite countertop and built-in cabinets 
 * Walk-in pantry.
 * Family room with built-in entertainment center overhead surround speakers,
   access to the rear yard
 * Inviting formal dining and living room with dimmable overhead lighting 
 * Cozy wood-burning fireplace with a mantle
 * Art niches
 * Sliding doors to the rear yard. 

 * Spacious office/den with designer sculpted carpet, oversized window, and
   French doors.                            




 * Hall bath with shell sink, shower over tub configuration, tile shower
   surround, and glass enclosure

 * Oversized master bedroom with designer sculpted carpet, crown molding, wooden
   shutters, ceiling fan, and sliding doors to the rear yard. 
 * Recently remodeled master bathroom 
 *  LVP Flooring, custom cabinets with brass hardware 
 * Marble countertops 
 * Custom backlit mirrors 
 * Large walk-in shower with bench 
 * Custom ceramic tile shower surround 
 * Pebble shower pan
 * Dual shower heads 
 * Private water closet with storage cabinets
 * Expansive .36-acre lot with custom concrete patios
 * Sparkling custom pool with waterfalls, custom lighting options, and stone
   accents
 * Jetted hot tub with water fall 
 * Large side yard/parking pad, storage shed, and small orchard.


1 / 60