2oldlanding.com Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://2oldlanding.com/
Submission: On September 03 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="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

2 OLD LANDING ROAD, TIBURON

Toggle navigation
 * Home
 * Gallery
 * Features
 * Floor Plans
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact


 * Home
 * Gallery
 * Features
 * Floor Plans
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact




ACHUCK & ZECH PRESENTS


A MASTERPIECE OF MODERN COMFORT AND ELEGANCE

∎


$4,195,000


2 OLD LANDING ROAD, TIBURON


ALL PROPERTY PHOTOS

∎

View more


PROPERTY DETAILS

∎

beds

5

baths

4

interior

3,108 sq ft

Discover the perfect blend of luxury, comfort, and functionality at 2 Old
Landing in Tiburon, California. This exquisite shingle-style craftsman home,
built in 2005, offers 5 bedrooms and 4 full baths, all thoughtfully designed on
a single level to provide an easy and accessible living experience. Spanning
3,108 square feet and situated on a sprawling 34,107 square foot lot, this
property is a true sanctuary, boasting privacy, extensive upgrades, and an
inviting atmosphere ideal for both intimate gatherings and grand celebrations.
 
Interior Highlights:
 
Elegant Living Spaces: The formal living room and dining room are enhanced with
a Phillip Jeffries wallpaper mural and stylish Serena & Lily light fixtures,
offering a sophisticated ambiance.
  
Gourmet Kitchen: This kitchen is a chef’s dream, featuring freshly painted
cabinets, updated honed black granite countertops, a new Carrera Marble
backsplash, and high-end Rohl sinks. Additional conveniences include a pot
filler at the stove, a wine fridge, and a silent garbage disposal. The kitchen
seamlessly connects to the great room, which opens to the backyard, perfect for
entertaining.
 
Luxurious Bedrooms and Baths: The master and guest suite are located on one side
of the home for ultimate privacy, with an updated bathroom featuring new
mirrors, light fixtures, and drawer pulls. Three additional bedrooms, including
a guest suite with remote-control blackout shades, are located on the opposite
side of the house, ensuring comfort and privacy for all.
 
Functional Spaces: The laundry room has been updated with new LG appliances,
white quartz countertops, and a deep porcelain sink. An office space off the
garage is ready for work-from-home needs or can be transformed into a gym or
additional storage area.
 
Exterior Paradise:
 
Extensive Backyard Remodel: The backyard has been transformed into an outdoor
oasis with over 1,200 square feet of Travertine stone patio, 1,750 square feet
of upgraded turf, and two 15-foot outdoor concrete islands. The space also
includes a fully equipped outdoor kitchen, a stunning 8-foot limestone-finished
fireplace, and a garden area with planter boxes growing tomatoes, kale, and
herbs.
 
Lush Landscaping: Enjoy the serenity of meticulously designed landscaping,
featuring olive, lemon, and orange trees, grapevines, and over 30 Emerald Thuja
trees for added privacy. The front yard boasts updated lighting,
remote-controlled string lights, and newly installed turf.
 
Convenient Location: Positioned for an easy commute with quick access to the
freeway, this home is also centrally located near bus stops for school pickups
and drop-offs. Plus, it's part of the award-winning Tiburon school district.
 
2 Old Landing is more than just a home: it's a lifestyle. Whether you're looking
to entertain or enjoy a peaceful retreat, this property offers everything you
need and more. Don't miss the opportunity to make this exquisite Tiburon home
yours.


FLOOR PLANS

∎
Click here to download

Click here to download



ABOUT THIS


NEIGHBORHOOD

∎
Keep reading


View more


Achuck & Zech

Compass

Realtor®

DRE: #01378178 Cell: 415.722.8521

missy.zech@compass.com

achuckzechrealstate.com


SCHEDULE

∎

Upcoming Events

Wednesday

Sep 4

Broker Tours

10:30 AM - 2:00 PM

Saturday

Sep 7

Open House

2:00 PM - 4:00 PM

Sunday

Sep 8

Open House

2:00 PM - 4: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.

Achuck & Zech

Compass

Realtor®

DRE: #01378178 Cell: 415.722.8521

missy.zech@compass.com

achuckzechrealstate.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 / 107