www.www.modernica.sites.open.homes Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://www.www.modernica.sites.open.homes/
Submission: On July 18 via api from US — Scanned from ES

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-8">
  <div class="text-left">
    <label for="name" class="block text-gray-700 mb-2 label">Your Full Name</label>
    <div class="mt-1">
      <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-brand-gray-700">
      <span x-show="!validForm.fields.name.valid" class="error-msg">Name cannot be empty</span>
    </div>
  </div>
  <div class="text-left">
    <label for="email" class="block text-gray-700 text-left mb-2 label">Your Email</label>
    <div class="mt-1">
      <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" 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">Email cannot be empty</span>
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg">Provide a valid email address</span>
    </div>
  </div>
  <div class="text-left">
    <label for="phone-number" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label"> Phone Number </label>
    <div class="mt-1">
      <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
      <span x-show="!validForm.fields.phone.valid" class="error-msg">Phone number cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3">
    <div class="flex justify-between">
      <label for="message" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Message </label>
    </div>
    <div class="mt-1 text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <p class="text-sm">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="sm:col-span-3 sm:flex sm:justify-center">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50" 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="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-8">
  <div class="text-left">
    <label for="name" class="block text-gray-700 mb-2 label">Your Full Name</label>
    <div class="mt-1">
      <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-brand-gray-700">
      <span x-show="!validForm.fields.name.valid" class="error-msg" style="display: none;">Name cannot be empty</span>
    </div>
  </div>
  <div class="text-left">
    <label for="email" class="block text-gray-700 text-left mb-2 label">Your Email</label>
    <div class="mt-1">
      <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" 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" 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" style="display: none;">Provide a valid email address</span>
    </div>
  </div>
  <div class="text-left">
    <label for="phone-number" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label"> Phone Number </label>
    <div class="mt-1">
      <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
      <span x-show="!validForm.fields.phone.valid" class="error-msg" style="display: none;">Phone number cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3">
    <div class="flex justify-between">
      <label for="message" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Message </label>
    </div>
    <div class="mt-1 text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <p class="text-sm">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="sm:col-span-3 sm:flex sm:justify-center">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50" 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

123 MODERNICA LANE

Toggle navigation
 * Home
 * Gallery
 * Features
 * Text
 * Video
 * Virtual Tour
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact


 * Home
 * Gallery
 * Features
 * Text
 * Video
 * Virtual Tour
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact




JOHANNA HAYES & EDWARD GREY PRESENTS


BEAUTIFUL CONTEMPORARY HOME IN PORTOLA VALLEY

∎


$5,450,000


123 MODERNICA LANE

All property photos
View gallery

Pool Paradise
View gallery

ADU
View gallery



PROPERTY DETAILS

∎

beds

3

baths

3

interior

3,090 sq ft



∎

Welcome to 155 Willowbrook Drive, a breathtaking California contemporary home
nestled on a beautiful 1.1-acre lot. This property offers a serene
creeksidestream setting, providing the perfect combination of sunny exposure,
tranquility, and privacy.

As you step inside, you are greeted by a formal entry leading to a light-filled
living room. Featuring a cozy fireplace, vaulted ceilings, and large picture
windows, this space offers stunning views of the backyard and pool. The custom
kitchen is a chef's dream, complete with vaulted ceilings, granite countertops,
and high-end appliances from Subzero, Bosch, and Wolf. The center island and
eating area provide plenty of space for casual dining, while the adjacent family
room, with its high ceilings and large picture windows, offers a comfortable
space for relaxation. Sliding doors open to a spacious deck, perfect for
entertaining with picturesque views of the yard.

The formal dining room is ideal for hosting dinner parties, featuring built-ins
and elegant wainscoting. Hardwood floors run throughout the home, adding a touch
of sophistication to every room. The main house boasts three bedrooms, including
a spacious master bedroom suite with a walk-in closet, a remodeled bathroom with
a rain shower, and a fireplace. The second bathroom has also been completely
remodeled to provide modern comfort and style.

In addition to the main house, this property includes a remodeled guesthouse
with a full bath, offering a perfect retreat for visitors. The outdoor space is
an entertainer's paradise, featuring a solar-heated swimming pool, hot tub,
large flat lawn/play area, lush landscaping, and even an orchard. 

Located close to trails and hiking paths, this home backs onto open space,
providing ample opportunities for outdoor adventures. The property is within the
outstanding Portola Valley School District and is within walking distance to
Corte Madera and Robert's Market.

Don't miss the chance to own this stunning home in San Mateo, where luxury and
nature seamlessly blend to create an idyllic living experience.
Keep reading
Welcome to 155 Willowbrook Drive, a breathtaking California contemporary home
nestled on a beautiful 1.1-acre lot. This property offers a serene
creeksidestream setting, providing the perfect combination of sunny exposure,
tranquility, and privacy.

As you step inside, you are greeted by a formal entry leading to a light-filled
living room. Featuring a cozy fireplace, vaulted ceilings, and large picture
windows, this space offers stunning views of the backyard and pool. The custom
kitchen is a chef's dream, complete with vaulted ceilings, granite countertops,
and high-end appliances from Subzero, Bosch, and Wolf. The center island and
eating area provide plenty of space for casual dining, while the adjacent family
room, with its high ceilings and large picture windows, offers a comfortable
space for relaxation. Sliding doors open to a spacious deck, perfect for
entertaining with picturesque views of the yard.

The formal dining room is ideal for hosting dinner parties, featuring built-ins
and elegant wainscoting. Hardwood floors run throughout the home, adding a touch
of sophistication to every room. The main house boasts three bedrooms, including
a spacious master bedroom suite with a walk-in closet, a remodeled bathroom with
a rain shower, and a fireplace. The second bathroom has also been completely
remodeled to provide modern comfort and style.

In addition to the main house, this property includes a remodeled guesthouse
with a full bath, offering a perfect retreat for visitors. The outdoor space is
an entertainer's paradise, featuring a solar-heated swimming pool, hot tub,
large flat lawn/play area, lush landscaping, and even an orchard. 

Located close to trails and hiking paths, this home backs onto open space,
providing ample opportunities for outdoor adventures. The property is within the
outstanding Portola Valley School District and is within walking distance to
Corte Madera and Robert's Market.

Don't miss the chance to own this stunning home in San Mateo, where luxury and
nature seamlessly blend to create an idyllic living experience.


WALKTHROUGH


PROPERTY TOUR

∎



WALKTHROUGH


3D VIRTUAL TOUR

∎



ABOUT THIS


NEIGHBORHOOD

∎

Welcome to Portola Valley, CA—a hidden gem nestled in the heart of the
Peninsula, where the tranquil beauty of nature meets a vibrant community spirit.
As someone who’s called this place home for years, I’m here to share what makes
Portola Valley not just a place to live, but a place to thrive.

Architecture and Home Style
Portola Valley’s architectural landscape is a testament to its commitment to
preserving natural beauty. You’ll find homes that blend seamlessly with the
rolling hills and wooded areas, featuring designs that prioritize sustainability
and harmony with the environment. Mid-century modern homes, rustic ranches, and
contemporary eco-friendly houses are common, each uniquely reflecting the town's
ethos.

Pro Tip: Look for homes with large windows and open floor plans to maximize your
enjoyment of the stunning natural surroundings.

Restaurants
Food lovers, rejoice! Portola Valley may be small, but it boasts some incredible
dining options. From cozy cafes to upscale eateries, the local food scene is all
about quality and fresh, locally-sourced ingredients. A must-visit is the
renowned Portola Kitchen, where rustic Italian fare meets farm-to-table
freshness. Another local favorite is Woodside Bakery & Cafe, perfect for a
morning coffee and pastry.

Pro Tip: Don’t miss the seasonal dishes—local chefs love to highlight the best
of what’s fresh and in-season.

Parks and Recreation
Outdoor enthusiasts will find their paradise in Portola Valley. The town is
surrounded by open spaces, trails, and parks. Hike up to the Windy Hill Open
Space Preserve for breathtaking views of the Bay Area, or take a leisurely
stroll through Thornewood Preserve. There’s also Rossotti Field for soccer and
community gatherings.

Pro Tip: Early morning hikes offer the best chance to see local wildlife and
enjoy the cool, crisp air.
Keep reading
Welcome to Portola Valley, CA—a hidden gem nestled in the heart of the
Peninsula, where the tranquil beauty of nature meets a vibrant community spirit.
As someone who’s called this place home for years, I’m here to share what makes
Portola Valley not just a place to live, but a place to thrive.

Architecture and Home Style
Portola Valley’s architectural landscape is a testament to its commitment to
preserving natural beauty. You’ll find homes that blend seamlessly with the
rolling hills and wooded areas, featuring designs that prioritize sustainability
and harmony with the environment. Mid-century modern homes, rustic ranches, and
contemporary eco-friendly houses are common, each uniquely reflecting the town's
ethos.

Pro Tip: Look for homes with large windows and open floor plans to maximize your
enjoyment of the stunning natural surroundings.

Restaurants
Food lovers, rejoice! Portola Valley may be small, but it boasts some incredible
dining options. From cozy cafes to upscale eateries, the local food scene is all
about quality and fresh, locally-sourced ingredients. A must-visit is the
renowned Portola Kitchen, where rustic Italian fare meets farm-to-table
freshness. Another local favorite is Woodside Bakery & Cafe, perfect for a
morning coffee and pastry.

Pro Tip: Don’t miss the seasonal dishes—local chefs love to highlight the best
of what’s fresh and in-season.

Parks and Recreation
Outdoor enthusiasts will find their paradise in Portola Valley. The town is
surrounded by open spaces, trails, and parks. Hike up to the Windy Hill Open
Space Preserve for breathtaking views of the Bay Area, or take a leisurely
stroll through Thornewood Preserve. There’s also Rossotti Field for soccer and
community gatherings.

Pro Tip: Early morning hikes offer the best chance to see local wildlife and
enjoy the cool, crisp air.

View more


Johanna Hayes

Bay Area Realty

DRE: #1234567890 Cell: 2134567789 Office: 2133730987

johannahayesrealtor@gmail.com

bayareare.open.homes

Edward Grey

Bay Area Realty

DRE: #7123456

ed.grey@open.homes


SCHEDULE

∎

Upcoming Events

Saturday

May 4

Open House Tours

11:00 AM - 3:00 PM

Tuesday

May 11

Open House Tours

11:00 AM - 3:00 PM



Request an appointment


GET IN TOUCH

∎
Your Full Name
Name cannot be empty
Your Email
Email cannot be empty Provide a valid email address
Your Phone Number Phone Number
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

∎
Your Full Name
Name cannot be empty
Your Email
Email cannot be empty Provide a valid email address
Your Phone Number Phone Number
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.

Johanna Hayes

Bay Area Realty

DRE: #1234567890 Cell: 2134567789 Office: 2133730987

johannahayesrealtor@gmail.com

bayareare.open.homes

Edward Grey

Bay Area Realty

DRE: #7123456

ed.grey@open.homes

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 / 145

1 / 17

1 / 8

Welcome to 155 Willowbrook Drive, a breathtaking California contemporary home
nestled on a beautiful 1.1-acre lot. This property offers a serene
creeksidestream setting, providing the perfect combination of sunny exposure,
tranquility, and privacy.

As you step inside, you are greeted by a formal entry leading to a light-filled
living room. Featuring a cozy fireplace, vaulted ceilings, and large picture
windows, this space offers stunning views of the backyard and pool. The custom
kitchen is a chef's dream, complete with vaulted ceilings, granite countertops,
and high-end appliances from Subzero, Bosch, and Wolf. The center island and
eating area provide plenty of space for casual dining, while the adjacent family
room, with its high ceilings and large picture windows, offers a comfortable
space for relaxation. Sliding doors open to a spacious deck, perfect for
entertaining with picturesque views of the yard.

The formal dining room is ideal for hosting dinner parties, featuring built-ins
and elegant wainscoting. Hardwood floors run throughout the home, adding a touch
of sophistication to every room. The main house boasts three bedrooms, including
a spacious master bedroom suite with a walk-in closet, a remodeled bathroom with
a rain shower, and a fireplace. The second bathroom has also been completely
remodeled to provide modern comfort and style.

In addition to the main house, this property includes a remodeled guesthouse
with a full bath, offering a perfect retreat for visitors. The outdoor space is
an entertainer's paradise, featuring a solar-heated swimming pool, hot tub,
large flat lawn/play area, lush landscaping, and even an orchard. 

Located close to trails and hiking paths, this home backs onto open space,
providing ample opportunities for outdoor adventures. The property is within the
outstanding Portola Valley School District and is within walking distance to
Corte Madera and Robert's Market.

Don't miss the chance to own this stunning home in San Mateo, where luxury and
nature seamlessly blend to create an idyllic living experience.
Welcome to Portola Valley, CA—a hidden gem nestled in the heart of the
Peninsula, where the tranquil beauty of nature meets a vibrant community spirit.
As someone who’s called this place home for years, I’m here to share what makes
Portola Valley not just a place to live, but a place to thrive.

Architecture and Home Style
Portola Valley’s architectural landscape is a testament to its commitment to
preserving natural beauty. You’ll find homes that blend seamlessly with the
rolling hills and wooded areas, featuring designs that prioritize sustainability
and harmony with the environment. Mid-century modern homes, rustic ranches, and
contemporary eco-friendly houses are common, each uniquely reflecting the town's
ethos.

Pro Tip: Look for homes with large windows and open floor plans to maximize your
enjoyment of the stunning natural surroundings.

Restaurants
Food lovers, rejoice! Portola Valley may be small, but it boasts some incredible
dining options. From cozy cafes to upscale eateries, the local food scene is all
about quality and fresh, locally-sourced ingredients. A must-visit is the
renowned Portola Kitchen, where rustic Italian fare meets farm-to-table
freshness. Another local favorite is Woodside Bakery & Cafe, perfect for a
morning coffee and pastry.

Pro Tip: Don’t miss the seasonal dishes—local chefs love to highlight the best
of what’s fresh and in-season.

Parks and Recreation
Outdoor enthusiasts will find their paradise in Portola Valley. The town is
surrounded by open spaces, trails, and parks. Hike up to the Windy Hill Open
Space Preserve for breathtaking views of the Bay Area, or take a leisurely
stroll through Thornewood Preserve. There’s also Rossotti Field for soccer and
community gatherings.

Pro Tip: Early morning hikes offer the best chance to see local wildlife and
enjoy the cool, crisp air.
1 / 35