600murray.com Open in urlscan Pro
15.197.234.174  Public Scan

URL: https://600murray.com/
Submission: On July 23 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="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

600 MURRAY AVENUE, KENTFIELD

Toggle navigation
 * Home
 * Features
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact


 * Home
 * Features
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact




JULIA BERNARDINI & VICTORIA CLEMONS PRESENT


MOUNTAIN LODGE-LIKE RESIDENCE RIGHT IN TOWN!

∎


$3,995,000


600 MURRAY AVENUE, KENTFIELD


PROPERTY DETAILS

∎

beds

5

baths

4

interior

3,200 sq ft

Imagine living in a cool hilltop lodge on an ~5 acres of land yet close to town?
It does exist between Kentfield and Larkspur only 2 mins from Magnolia Ave!
Perched above town atop a sunny knoll in Murray Park neighborhood and accessible
through a private driveway this property provides for ultimate privacy,
tranquility and serene views of the valley, and the bay. Unique potential to
build, subdivide or enjoy as-is. Many upgrades over the years including
connecting to public water/sewer, newly paved driveway, retaining wall, new
roof, and more. 

The minute you step inside it feels like you are on a retreat in a mountain
chalet graced with rustic elegance and warm lodge-like charm including dramatic
architectural details like cedar siding, ceilings with exposed reclaimed hand
hewn old growth redwood and cedar beams, solid timbers and planking, and walls
of glass views in all directions. 4 bedrooms and 3 bathrooms in the main house
plus a studio guest cottage with gorgeous views. Open floor-plan with a spacious
and bright living room with access to a cozy patio with serene views, a modern
generously-sized kitchen with a center island, custom cabinetry and stainless
steel appliances, an adjacent family/tv room with gorgeous views all around and
three bedrooms including a primary suite and a full bath on that level. The
lower level features another family room, a wet bar area plus another bedroom
and bath with a separate entrance. A cozy fully fenced-in dog run. Comfortable
and versatile floor-plan with a possibility to live on a single level with no
stairs to the front door.

This property is like nothing you’ve experienced before and comes with endless
possibilities whether one wants to create a family compound, add a pool (buyer
to verify) subdivide the lots for additional housing or just enjoy the beautiful
natural setting with countless sunsets and sunrises. Feels like world away yet
mins from award-winning Kentfield schools, downtown Larkspur, Woodlands Market,
Rustic Bakery, The Guest House, College of Marin and more. Get on your bike and
your first Equator cup coffee is just moments away!




ABOUT THIS


NEIGHBORHOOD

∎

The property is conveniently located between two vibrant towns - Larkspur and
Kentfield. Minutes to historic downtown Larkspur and the center of Kentfield
with some of the premier Marin restaurants & shops: Picco, Perry’s, Left Bank,
Emporio Rulli, Farm House Local, Backstage Wine, Equator coffee, Boichik Bagels,
The Guest house, Half Day Cafe and more. Award-winning schools, parks, hiking
trails, Bay Club, Bon Air Center, Marin General Hospital are within minutes.
Easy access to San Francisco through Larkspur ferry and Highway 101. The city of
Kentfield and Kent Woodlands are unincorporated county areas. If Kentfield had a
social center, it would probably be Woodlands Market that hosts a community
barbecue with all funds raised benefiting the Kentfield School District. Both
Bacich Elementary and Kent Middle Schools have been named “California
Distinguished Schools". Regarding high schools, students living in Kentfield
have several nearby to choose from. The public high school is Redwood (also a
California Distinguished School) in Larkspur; close-by private high schools
include Branson, Marin Catholic, and Marin Academy. Arguably the best weather in
Marin.


Keep reading
The property is conveniently located between two vibrant towns - Larkspur and
Kentfield. Minutes to historic downtown Larkspur and the center of Kentfield
with some of the premier Marin restaurants & shops: Picco, Perry’s, Left Bank,
Emporio Rulli, Farm House Local, Backstage Wine, Equator coffee, Boichik Bagels,
The Guest house, Half Day Cafe and more. Award-winning schools, parks, hiking
trails, Bay Club, Bon Air Center, Marin General Hospital are within minutes.
Easy access to San Francisco through Larkspur ferry and Highway 101. The city of
Kentfield and Kent Woodlands are unincorporated county areas. If Kentfield had a
social center, it would probably be Woodlands Market that hosts a community
barbecue with all funds raised benefiting the Kentfield School District. Both
Bacich Elementary and Kent Middle Schools have been named “California
Distinguished Schools". Regarding high schools, students living in Kentfield
have several nearby to choose from. The public high school is Redwood (also a
California Distinguished School) in Larkspur; close-by private high schools
include Branson, Marin Catholic, and Marin Academy. Arguably the best weather in
Marin.



View more


Julia Bernardini & Victoria Clemons

Compass

Victoria Clemons

DRE: #01972746 Cell: 415.827.6552

Team@JuliaandVictoria.com

www.JuliaandVictoria.com
Z


SCHEDULE

∎

There are no upcoming events.

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.

Julia Bernardini & Victoria Clemons

Compass

Victoria Clemons

DRE: #01972746 Cell: 415.827.6552

Team@JuliaandVictoria.com

www.JuliaandVictoria.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

The property is conveniently located between two vibrant towns - Larkspur and
Kentfield. Minutes to historic downtown Larkspur and the center of Kentfield
with some of the premier Marin restaurants & shops: Picco, Perry’s, Left Bank,
Emporio Rulli, Farm House Local, Backstage Wine, Equator coffee, Boichik Bagels,
The Guest house, Half Day Cafe and more. Award-winning schools, parks, hiking
trails, Bay Club, Bon Air Center, Marin General Hospital are within minutes.
Easy access to San Francisco through Larkspur ferry and Highway 101. The city of
Kentfield and Kent Woodlands are unincorporated county areas. If Kentfield had a
social center, it would probably be Woodlands Market that hosts a community
barbecue with all funds raised benefiting the Kentfield School District. Both
Bacich Elementary and Kent Middle Schools have been named “California
Distinguished Schools". Regarding high schools, students living in Kentfield
have several nearby to choose from. The public high school is Redwood (also a
California Distinguished School) in Larkspur; close-by private high schools
include Branson, Marin Catholic, and Marin Academy. Arguably the best weather in
Marin.


1 / 131