www.790tamarack.com
Open in
urlscan Pro
3.33.207.30
Public Scan
Submitted URL: http://www.790tamarack.com/
Effective URL: https://www.790tamarack.com/
Submission: On September 22 via api from US — Scanned from DE
Effective URL: https://www.790tamarack.com/
Submission: On September 22 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 text-bg-contrast">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 text-bg-contrast">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 && validForm.fields.email.rule === 'required'" class="error-msg">Email cannot be empty</span>
<span x-show="!validForm.fields.email.valid && 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 text-bg-contrast"> Your Phone Number </label>
<label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label text-bg-contrast"> 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 text-bg-contrast"> 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 text-bg-contrast">
<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 text-bg-contrast">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 text-bg-contrast">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 && validForm.fields.email.rule === 'required'" class="error-msg" style="display: none;">Email cannot be empty</span>
<span x-show="!validForm.fields.email.valid && 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 text-bg-contrast"> Your Phone Number </label>
<label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label text-bg-contrast"> 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 text-bg-contrast"> 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 text-bg-contrast">
<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
790 TAMARACK DRIVE, SAN RAFAEL Toggle navigation * Home * Gallery * Features * Floor Plans * Location * Maps * Agent Info * Schedule * Contact * Home * Gallery * Features * Floor Plans * Location * Maps * Agent Info * Schedule * Contact MICHAEL KRAMER & SAMANTA RAD PRESENT EXCEPTIONAL SAN RAFAEL HOME ∎ $1,849,000 790 TAMARACK DRIVE, SAN RAFAEL ALL PROPERTY PHOTOS ∎ View more PROPERTY DETAILS ∎ beds 4 baths 3 interior 2,356 sq ft neighborhood San Rafael This meticulously maintained 4 bed 3 bath residence, located in the heart of Terra Linda, offers contemporary amenities set in a serene and sunny neighborhood. It's close proximity to Miller Creek School district, local restaurants and shopping, as well as convenient access to Highway 101, renders this spacious home highly desirable. Partially renovated to incorporate a flexible floor plan that seamlessly integrates indoor and outdoor living, the residence showcases energy-efficient features. Positioned on a sizable private corner lot, the 2-level home showcases an expansive fenced backyard, side yard with vegetable garden and remarkable ridge-line views. Approximately 2356 sq ft of living space, the property also includes a two-car side by side garage equipped with an EV charger, solar offset of the PG&E bill for utility cost savings, an outdoor play structure, a hot tub, and additional storage space under the outside stairwell. There is a permitted attached Jr. ADU with a full kitchen, bathroom, laundry and private entrance. There is additional parking in the driveway as well as in the rear of the property. Other highlights of the area include close proximity to Terra Linda/ Sleepy Hollow trail and Terra Linda Community pool. 790 Tamarack Drive Upgrade List * Extensive facade remodel * Exterior trash and storage area under exterior stairs * Lot adjustment to increase the size of the driveway (accomidates up to 3 vehicles) * 440 sq Ft Junior ADU - ( larger detached ADU may be added ) * 3 remodeled bathrooms * Enclosed side yard added * Extensive landscape upgrade in front and rear * Full perimeter fence freshly stained * All decks freshly stained * Hot Tub in rear yard 2018 * House painted interior 2022 * All fire prone shrubs and plants removed per city ordinance * Turf added to rear yard (sprinklers to keep cool and clean) * Finished Garage with 2 care side by side parking * Storage expanded under house and lighting added * Ceiling fans in upstairs bedrooms * New 200 amp service upgrade, * New garage door with battery back up * New sub panel (2) garage & rear yard * Outdoor shower * Solar system 5.52KW (NEM 2.0) * "Juice Box" EV charger, * New sewer lateral (2018) * New Windows (2010) * New Water heater replaced (2018) * HVAC replaced (2021) Nest thermostats * Nest keyless entry * New sump pump in rear yard * New Festoon lighting rear * Mister system, rear yard * Smart wifi controlled irrigation throughout * Smart exterior lighting control * Attic ventilation fan FLOOR PLANS ∎ Click here to download ABOUT THIS NEIGHBORHOOD ∎ The county seat of Marin, San Rafael is large, diverse, eclectic, and historic. That history stretches from California's beginnings, with the 1817 founding of Mission San Rafael on the old El Camino Real, to the construction of the eye-popping Marin Civic Center in the 1960s. Designed by renowned architect Frank Lloyd Wright, the Civic Center was completed in 1962 and is so futuristic that it pops up in science-fiction films. San Rafael still looks to the future thanks to a vibrant downtown redevelopment effort. The focal point of downtown is the Smith Rafael Film Center, which features a state–of-the-art multiplex cinema that screens independent and foreign films. Cuisine is eclectic: within a few blocks of 4th Street diners can find sushi, Indian, Thai, Italian, Mexican, and Puerto Rican food. Thursday afternoons in the spring and summer find 4th Street hosting a farmers market, which features live music. The neighborhoods of San Rafael are equally distinctive. From the sought-after midcentury Eichler homes of Terra Linda to the Victorians that surround Dominican College and the custom homes of Lucas Valley, San Rafael provides diversity of price and style. It's also easy to get away from it all in San Rafael. Nearby China Camp State Park is a jewel by the bay, offering: a kid-friendly, walk-in campground for tents only; a shallow, protected swimming beach; and biking and running trails. Keep reading The county seat of Marin, San Rafael is large, diverse, eclectic, and historic. That history stretches from California's beginnings, with the 1817 founding of Mission San Rafael on the old El Camino Real, to the construction of the eye-popping Marin Civic Center in the 1960s. Designed by renowned architect Frank Lloyd Wright, the Civic Center was completed in 1962 and is so futuristic that it pops up in science-fiction films. San Rafael still looks to the future thanks to a vibrant downtown redevelopment effort. The focal point of downtown is the Smith Rafael Film Center, which features a state–of-the-art multiplex cinema that screens independent and foreign films. Cuisine is eclectic: within a few blocks of 4th Street diners can find sushi, Indian, Thai, Italian, Mexican, and Puerto Rican food. Thursday afternoons in the spring and summer find 4th Street hosting a farmers market, which features live music. The neighborhoods of San Rafael are equally distinctive. From the sought-after midcentury Eichler homes of Terra Linda to the Victorians that surround Dominican College and the custom homes of Lucas Valley, San Rafael provides diversity of price and style. It's also easy to get away from it all in San Rafael. Nearby China Camp State Park is a jewel by the bay, offering: a kid-friendly, walk-in campground for tents only; a shallow, protected swimming beach; and biking and running trails. View more Michael Kramer City Real Estate Realtor® DRE: #01918367 Cell: (415) 812-5239 michael.kramer@cityrealestatesf.com cityrealestatesf.com Samanta rad City Real Estate DRE: #02160879 Cell: (619) 871.3344 samanta@cityrealestatesf.com 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. Michael Kramer City Real Estate Realtor® DRE: #01918367 Cell: (415) 812-5239 michael.kramer@cityrealestatesf.com cityrealestatesf.com Samanta rad City Real Estate DRE: #02160879 Cell: (619) 871.3344 samanta@cityrealestatesf.com Email Us Email Us Email Us Home Agent Login MLS: 324051850 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 / 93 The county seat of Marin, San Rafael is large, diverse, eclectic, and historic. That history stretches from California's beginnings, with the 1817 founding of Mission San Rafael on the old El Camino Real, to the construction of the eye-popping Marin Civic Center in the 1960s. Designed by renowned architect Frank Lloyd Wright, the Civic Center was completed in 1962 and is so futuristic that it pops up in science-fiction films. San Rafael still looks to the future thanks to a vibrant downtown redevelopment effort. The focal point of downtown is the Smith Rafael Film Center, which features a state–of-the-art multiplex cinema that screens independent and foreign films. Cuisine is eclectic: within a few blocks of 4th Street diners can find sushi, Indian, Thai, Italian, Mexican, and Puerto Rican food. Thursday afternoons in the spring and summer find 4th Street hosting a farmers market, which features live music. The neighborhoods of San Rafael are equally distinctive. From the sought-after midcentury Eichler homes of Terra Linda to the Victorians that surround Dominican College and the custom homes of Lucas Valley, San Rafael provides diversity of price and style. It's also easy to get away from it all in San Rafael. Nearby China Camp State Park is a jewel by the bay, offering: a kid-friendly, walk-in campground for tents only; a shallow, protected swimming beach; and biking and running trails. 1 / 174