760citrus.com Open in urlscan Pro
15.197.234.174  Public Scan

URL: https://760citrus.com/
Submission: On March 28 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

760 CITRUS AVENUE

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


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




KELLAR MEANS REAL ESTATE


YGNACIO WOOD SINGLE-STORY CHARMER!

∎


$1,099,000


760 CITRUS AVENUE, CONCORD

All property photos
View gallery



PROPERTY DETAILS

∎

beds

4

baths

2

interior

2,000 sq ft

With nearly $100k invested in upgrades and updates over the past year (including
many big ticket items “behind the scenes”), this turnkey property is sure to
impress!

The welcoming front entry leads you to a large living room with slider to the
backyard.  The spacious dining room abuts the inviting living room with
fireplace and slider to the backyard along with the updated kitchen with clean
white cabinetry, granite counters and gas range.  The primary suite includes
doors to the backyard and updated en suite bath with two closets, dual sinks and
stall shower. 

The newly updated backyard, with no rear neighbors, includes fresh landscape,
paver patio, high-end swim spa, and large side yard for potential RV/boat
storage or an ADU!

Additional highlights include hardwood floors, interior shutters, skylights,
recessed lighting, “future-proofed” electrical upgrades (200 amp panel to allow
for potential electric vehicle charging), sewer line replacement, and HVAC
ducting improvements for better efficiency and performance (to name a few).  

Neighboring the Walnut Creek border, the Ygnacio Wood neighborhood is highly
sought-after for its easy access to the trail and open space, close proximity to
Woodside Elementary School & neighborhood Swim Club, annual 4th of July parade,
epic Halloweens, and convenience to Shadelands Sports Mall, private high
schools, and several shopping centers including Whole Foods, Trader Joe’s and
many dining options.


ABOUT THIS


NEIGHBORHOOD

∎

View more

With a population greater than 120,000, and a Bay Area Rapid Transit (BART)
station offering commuting options to Oakland and San Francisco, Concord is a
bustling city in Contra Costa County. Homes include those built in Craftsman,
traditional, and contemporary styles.
Shopping is plentiful, with three major shopping districts. Downtown Concord,
near Todos Santos Plaza, offers a vibrant mix of dining and retail in the
historic area.
Concord Pavilion's open, grassy amphitheater hosts popular bands and artists. A
summer series of music events brings local artists to the farmers' market
downtown, now in its second decade at Todos Santos Plaza. Concord places a big
emphasis on family, and the city offers plenty of parks and open space, as well
as kid-friendly events like KidFest, Dalis Garden Fall Fest and Craft Fair, and
Halloween contests.

Concord is not far from Mount Diablo and its extensive
network of hiking, biking, and equestrian trails. The popular Iron Horse Trail,
which connects Concord and Dublin, is a great place to go for a walk or bike
ride.


Keep reading
With a population greater than 120,000, and a Bay Area Rapid Transit (BART)
station offering commuting options to Oakland and San Francisco, Concord is a
bustling city in Contra Costa County. Homes include those built in Craftsman,
traditional, and contemporary styles.
Shopping is plentiful, with three major shopping districts. Downtown Concord,
near Todos Santos Plaza, offers a vibrant mix of dining and retail in the
historic area.
Concord Pavilion's open, grassy amphitheater hosts popular bands and artists. A
summer series of music events brings local artists to the farmers' market
downtown, now in its second decade at Todos Santos Plaza. Concord places a big
emphasis on family, and the city offers plenty of parks and open space, as well
as kid-friendly events like KidFest, Dalis Garden Fall Fest and Craft Fair, and
Halloween contests.

Concord is not far from Mount Diablo and its extensive
network of hiking, biking, and equestrian trails. The popular Iron Horse Trail,
which connects Concord and Dublin, is a great place to go for a walk or bike
ride.




Kellar Means Real Estate

Dudum Real Estate Group

Realtor

DRE: #01805955 Office: 925-305-8689

sarahkellar@dudum.com

https://kellarmeansrealestate.dudum.com/
Meet the dynamic duo – Sarah Kellar and Wendy Means. Specializing in Lafayette,
Moraga, Orinda, Alamo, Walnut Creek, and Pleasant Hill, they have been partners
since 2017. With a combined 30 years of real estate experience, together, they
have been involved in $260,117,538 in combined home sales, successfully closing
deals on 104 homes in the past three years. Having joined Dudum Real Estate
Group, Sarah and Wendy officially established Kellar Means Real Estate. Their
commitment to providing unparalleled customer service and unwavering support for
their clients is always a top priority. Before joining Dudum Real Estate Group,
they excelled as buyer specialists and managed listings for a local #1 team.
Trust Sarah and Wendy to stay top-of-mind for all your real estate needs –
they're here to make your property journey seamless and successful!
View Full Bio

Kellar Means Real Estate

Dudum Real Estate Group

Realtor

DRE: #01805955 Office: 925-305-8689

sarahkellar@dudum.com

https://kellarmeansrealestate.dudum.com/
Meet the dynamic duo – Sarah Kellar and Wendy Means. Specializing in Lafayette,
Moraga, Orinda, Alamo, Walnut Creek, and Pleasant Hill, they have been partners
since 2017. With a combined 30 years of real estate experience, together, they
have been involved in $260,117,538 in combined home sales, successfully closing
deals on 104 homes in the past three years. Having joined Dudum Real Estate
Group, Sarah and Wendy officially established Kellar Means Real Estate. Their
commitment to providing unparalleled customer service and unwavering support for
their clients is always a top priority. Before joining Dudum Real Estate Group,
they excelled as buyer specialists and managed listings for a local #1 team.
Trust Sarah and Wendy to stay top-of-mind for all your real estate needs –
they're here to make your property journey seamless and successful!


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.

Kellar Means Real Estate

Dudum Real Estate Group

Realtor

DRE: #01805955 Office: 925-305-8689

sarahkellar@dudum.com

https://kellarmeansrealestate.dudum.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 / 26

1 / 30

With a population greater than 120,000, and a Bay Area Rapid Transit (BART)
station offering commuting options to Oakland and San Francisco, Concord is a
bustling city in Contra Costa County. Homes include those built in Craftsman,
traditional, and contemporary styles.
Shopping is plentiful, with three major shopping districts. Downtown Concord,
near Todos Santos Plaza, offers a vibrant mix of dining and retail in the
historic area.
Concord Pavilion's open, grassy amphitheater hosts popular bands and artists. A
summer series of music events brings local artists to the farmers' market
downtown, now in its second decade at Todos Santos Plaza. Concord places a big
emphasis on family, and the city offers plenty of parks and open space, as well
as kid-friendly events like KidFest, Dalis Garden Fall Fest and Craft Fair, and
Halloween contests.

Concord is not far from Mount Diablo and its extensive
network of hiking, biking, and equestrian trails. The popular Iron Horse Trail,
which connects Concord and Dublin, is a great place to go for a walk or bike
ride.



Kellar Means Real Estate

Dudum Real Estate Group

Realtor

DRE: #01805955 Office: 925-305-8689

sarahkellar@dudum.com

https://kellarmeansrealestate.dudum.com/
Meet the dynamic duo – Sarah Kellar and Wendy Means. Specializing in Lafayette,
Moraga, Orinda, Alamo, Walnut Creek, and Pleasant Hill, they have been partners
since 2017. With a combined 30 years of real estate experience, together, they
have been involved in $260,117,538 in combined home sales, successfully closing
deals on 104 homes in the past three years. Having joined Dudum Real Estate
Group, Sarah and Wendy officially established Kellar Means Real Estate. Their
commitment to providing unparalleled customer service and unwavering support for
their clients is always a top priority. Before joining Dudum Real Estate Group,
they excelled as buyer specialists and managed listings for a local #1 team.
Trust Sarah and Wendy to stay top-of-mind for all your real estate needs –
they're here to make your property journey seamless and successful!