www.4pinehill.com Open in urlscan Pro
3.33.207.30  Public Scan

Submitted URL: https://invernessparadise.com/
Effective URL: https://www.4pinehill.com/
Submission: On August 11 via api from US — 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">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">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2">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">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="text-left mb-2">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">Phone number cannot be empty</span>
      </div>
    </div>
  </div>
  <div class="flex flex-col">
    <div class="flex justify-between">
      <label for="message">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">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 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">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" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2">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" 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="text-left mb-2">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" 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">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" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 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

4 PINE HILL DRIVE

Toggle navigation
 * Hero
 * Features
 * Floor Plans
 * Gallery
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact

 * Hero
 * Features
 * Floor Plans
 * Gallery
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact


PRESENTED BY PAUL WARRIN AND CRISTIAN ISBRANDTSEN


INVERNESS COASTAL RETREAT


$2,150,000


PROPERTY DETAILS

Bedrooms 3
Bathrooms 4
Square Feet 43,560 sq ft


FEATURING

DEVELOPMENT OPPORTUNITY

Approved plans and permits. Discover the epitome of serene California living
with this extraordinary property at the heart of Point Reyes National Seashore.
With all the groundwork completed, you can focus on bringing your vision to
life. The approved plans provide for the construction of a stunning
2,700-square-foot, 3bd/4ba residence featuring an open-concept living area and
expansive outdoor spaces—perfect for entertaining or simply relaxing in nature.
Nestled on over an acre with beautiful water views of Tomales Bay, the property
also includes a charming Airstream, offering a cozy guest retreat or a place to
stay during construction. Imagine strolling to Chicken Ranch Beach or enjoying
hiking and biking adventures nearby. The short drive to the charming town of
Point Reyes Station ensures you’re never far from vibrant local culture and
amenities.


FLOOR PLANS


FLOOR PLAN

Download


PROPERTY PHOTOS


View more


NEIGHBORHOOD

The wide-open, picture-perfect spaces of West Marin include the coastal
communities of Stinson Beach and Bolinas; the dairy farms of Olema, Point Reyes
Station, Tomales, and Nicasio; and the forest glens of Lagunitas, San Geronimo,
and Woodacre. 
Uniting all West Marin communities is a love for the land. That’s not going to
change soon, thanks to the efforts of Marin Agricultural Land Trust, an
organization dedicated to preserving farmland through voluntary conservation
easements.

Outdoor recreation ranges from surfing at Bolinas and Stinson Beach to mountain
biking on Mount Tamalpais and the annual Dipsea foot race to Stinson Beach. West
Marin is an area of unrivaled natural beauty, one that can lay claim to the
Golden Gate National Recreation Area, Muir Beach State Bark, Stinson Beach State
Park, Muir Woods National Monument, and Point Reyes National Seashore.

Of course it’s not all about the outdoors in West Marin. Devotees of inner peace
turn to the Green Gulch FarmZen Center in Muir Beach and Spirit Rock Meditation
Center in Woodacre. And for those who need to feed the belly as well as the
soul, Point Reyes Station has become a destination for the locavore movement.
The town is home to Marin Sun Farms, purveyor of ethically raised and butchered
meat, and Cowgirl Creamery, which makes its award-winning cheeses using organic
milk from nearby Straus Family Creamery.
Keep reading
The wide-open, picture-perfect spaces of West Marin include the coastal
communities of Stinson Beach and Bolinas; the dairy farms of Olema, Point Reyes
Station, Tomales, and Nicasio; and the forest glens of Lagunitas, San Geronimo,
and Woodacre. 
Uniting all West Marin communities is a love for the land. That’s not going to
change soon, thanks to the efforts of Marin Agricultural Land Trust, an
organization dedicated to preserving farmland through voluntary conservation
easements.

Outdoor recreation ranges from surfing at Bolinas and Stinson Beach to mountain
biking on Mount Tamalpais and the annual Dipsea foot race to Stinson Beach. West
Marin is an area of unrivaled natural beauty, one that can lay claim to the
Golden Gate National Recreation Area, Muir Beach State Bark, Stinson Beach State
Park, Muir Woods National Monument, and Point Reyes National Seashore.

Of course it’s not all about the outdoors in West Marin. Devotees of inner peace
turn to the Green Gulch FarmZen Center in Muir Beach and Spirit Rock Meditation
Center in Woodacre. And for those who need to feed the belly as well as the
soul, Point Reyes Station has become a destination for the locavore movement.
The town is home to Marin Sun Farms, purveyor of ethically raised and butchered
meat, and Cowgirl Creamery, which makes its award-winning cheeses using organic
milk from nearby Straus Family Creamery.

View more


Paul Warrin

Golden Gate Sotheby's International Realty

DRE: #01364693 Cell: 415-407-8019

paul@aw-sf.com

www.AW-SF.com
Z

Cristian Isbrandtsen

Golden Gate Sotheby's International Realty

DRE: #02221619 Cell: 415-535-9850

cristian@aw-sf.com

cristianisbrandtsen.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.

Paul Warrin

Golden Gate Sotheby's International Realty

DRE: #01364693 Cell: 415-407-8019

paul@aw-sf.com

www.AW-SF.com

Cristian Isbrandtsen

Golden Gate Sotheby's International Realty

DRE: #02221619 Cell: 415-535-9850

cristian@aw-sf.com

cristianisbrandtsen.com
Email Us Email Us Email Us
Home
Agent Login
MLS: 324061243

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

The wide-open, picture-perfect spaces of West Marin include the coastal
communities of Stinson Beach and Bolinas; the dairy farms of Olema, Point Reyes
Station, Tomales, and Nicasio; and the forest glens of Lagunitas, San Geronimo,
and Woodacre. 
Uniting all West Marin communities is a love for the land. That’s not going to
change soon, thanks to the efforts of Marin Agricultural Land Trust, an
organization dedicated to preserving farmland through voluntary conservation
easements.

Outdoor recreation ranges from surfing at Bolinas and Stinson Beach to mountain
biking on Mount Tamalpais and the annual Dipsea foot race to Stinson Beach. West
Marin is an area of unrivaled natural beauty, one that can lay claim to the
Golden Gate National Recreation Area, Muir Beach State Bark, Stinson Beach State
Park, Muir Woods National Monument, and Point Reyes National Seashore.

Of course it’s not all about the outdoors in West Marin. Devotees of inner peace
turn to the Green Gulch FarmZen Center in Muir Beach and Spirit Rock Meditation
Center in Woodacre. And for those who need to feed the belly as well as the
soul, Point Reyes Station has become a destination for the locavore movement.
The town is home to Marin Sun Farms, purveyor of ethically raised and butchered
meat, and Cowgirl Creamery, which makes its award-winning cheeses using organic
milk from nearby Straus Family Creamery.
1 / 23