<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marta Walsh | Scottsdale & Paradise Valley Luxury Real Estate</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,300;1,400&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
:root {
  --navy:#0B1F35; --navy2:#142840; --gold:#C8902A; --gold2:#E8B86D;
  --white:#FFFFFF; --off:#F7F8FA; --mid:#7A8FA3; --light:#E2EAF0;
  --red:#B83228; --ink:#1A2B3C;
}
html { scroll-behavior:smooth; }
body { background:var(--white); color:var(--ink); font-family:'Outfit',sans-serif; font-weight:300; overflow-x:hidden; line-height:1.6; }

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 52px; height:62px;
  background:rgba(11,31,53,0.97);
  border-bottom:1px solid rgba(200,144,42,0.4);
  backdrop-filter:blur(8px);
}
.nav-logo { text-decoration:none; display:flex; align-items:baseline; gap:10px; }
.nav-logo-name { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:600; letter-spacing:0.06em; color:var(--white); }
.nav-logo-name span { color:var(--gold); }
.nav-logo-divider { width:1px; height:14px; background:rgba(255,255,255,0.2); }
.nav-logo-sub { font-family:'Outfit',sans-serif; font-size:0.78rem; font-weight:300; letter-spacing:0.18em; color:rgba(255,255,255,0.7); }
.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a { font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.55); text-decoration:none; transition:color 0.2s; }
.nav-links a:hover { color:var(--gold); }
.nav-cta { color:var(--gold)!important; border-bottom:1px solid rgba(200,144,42,0.4); padding-bottom:1px; }
.hamburger { display:none; cursor:pointer; flex-direction:column; gap:5px; }
.hamburger span { display:block; width:20px; height:1.5px; background:var(--white); }

/* HERO — editorial, not billboard */
.hero {
  padding-top:62px;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:88vh;
  max-height:820px;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:64px 56px 64px 72px;
  background:var(--navy);
}
.hero-location {
  font-size:0.62rem; letter-spacing:0.28em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); margin-bottom:28px;
}
.hero-name {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1rem,1.4vw,1.3rem);
  font-weight:400; color:var(--gold); letter-spacing:0.06em;
  margin-bottom:10px;
}
.hero-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.4rem,4vw,3.4rem);
  font-weight:300; color:var(--white);
  line-height:1.15; margin-bottom:24px;
  letter-spacing:-0.01em;
}
.hero-title em { font-style:italic; color:var(--gold2); }
.hero-sub {
  font-size:0.9rem; color:rgba(255,255,255,0.5);
  line-height:1.75; margin-bottom:40px; max-width:380px;
}
.hero-actions { display:flex; flex-direction:column; gap:10px; align-items:flex-start; }
.btn-gold {
  display:inline-block; padding:12px 28px;
  background:var(--gold); color:var(--white);
  font-size:0.72rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  text-decoration:none; transition:background 0.2s; border:none; cursor:pointer; font-family:'Outfit',sans-serif;
}
.btn-gold:hover { background:var(--gold2); }
.btn-text {
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s;
}
.btn-text:hover { color:var(--gold); }
.btn-text::after { content:'→'; transition:transform 0.2s; }
.btn-text:hover::after { transform:translateX(3px); }

.hero-right { position:relative; overflow:hidden; }
.hero-right img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.hero-right::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, var(--navy) 0%, transparent 20%);
}

/* INTRO STRIP */
.intro-strip {
  padding:48px 72px;
  display:flex; align-items:center; justify-content:space-between; gap:48px;
  border-bottom:1px solid var(--light);
}
.intro-text { max-width:560px; }
.intro-text p { font-size:1.05rem; color:var(--mid); line-height:1.85; }
.intro-text p strong { color:var(--ink); font-weight:500; }
.intro-stats { display:flex; gap:40px; flex-shrink:0; }
.i-stat { text-align:center; }
.i-stat-num { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:400; color:var(--navy); line-height:1; }
.i-stat-label { font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--mid); margin-top:3px; }

/* EXPIRED GATEWAY */
.expired-section {
  display:grid; grid-template-columns:1fr 1fr;
  background:var(--off);
  border-top:3px solid var(--red);
}
.expired-left {
  padding:64px 56px 64px 72px;
  display:flex; flex-direction:column; justify-content:center;
}
.expired-tag {
  display:inline-block; font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--red); border:1px solid rgba(184,50,40,0.3); padding:4px 10px;
  margin-bottom:20px; width:fit-content;
}
.expired-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,3vw,2.8rem); font-weight:300;
  color:var(--navy); line-height:1.15; margin-bottom:18px; letter-spacing:-0.01em;
}
.expired-title strong { font-weight:600; }
.expired-body { font-size:1rem; color:var(--mid); line-height:1.85; margin-bottom:28px; max-width:400px; }
.expired-body strong { color:var(--ink); font-weight:500; }

.expired-right {
  padding:64px 72px 64px 56px;
  display:flex; flex-direction:column; justify-content:center; gap:24px;
}
.case-compare { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.case-box { padding:20px 16px; text-align:center; }
.case-box.before { background:rgba(184,50,40,0.06); border:1px solid rgba(184,50,40,0.18); }
.case-box.after  { background:rgba(26,122,74,0.06); border:1px solid rgba(26,122,74,0.22); }
.case-days { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:400; line-height:1; }
.before .case-days { color:var(--red); }
.after  .case-days { color:#1A7A4A; }
.case-result { font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; margin-top:5px; }
.before .case-result { color:var(--red); }
.after  .case-result { color:#1A7A4A; }
.case-label { font-size:0.72rem; color:var(--mid); margin-top:3px; }
.expired-quote {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:1.02rem; color:var(--mid); line-height:1.75;
  border-left:2px solid var(--gold); padding-left:16px;
}
.expired-quote cite { display:block; font-style:normal; font-family:'Outfit',sans-serif; font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-top:8px; }

/* ABOUT — personal, editorial */
.about-section {
  display:grid; grid-template-columns:360px 1fr;
  min-height:500px;
}
.about-img { overflow:hidden; }
.about-img img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.about-text {
  padding:64px 72px;
  display:flex; flex-direction:column; justify-content:center;
  border-left:1px solid var(--light);
}
.about-eyebrow { font-size:0.6rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.about-name { font-family:'Cormorant Garamond',serif; font-size:2.4rem; font-weight:400; color:var(--navy); line-height:1.05; margin-bottom:4px; }
.about-role { font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--mid); margin-bottom:24px; }
.about-body { font-size:1rem; color:var(--mid); line-height:1.85; margin-bottom:14px; }
.about-body strong { color:var(--ink); font-weight:500; }

/* MARKET DATA */
.market-section {
  background:var(--navy); padding:72px;
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center;
}
.market-eyebrow { font-size:0.6rem; letter-spacing:0.24em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:14px; }
.market-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; color:var(--white); line-height:1.2; margin-bottom:18px; }
.market-title em { font-style:italic; color:var(--gold2); }
.market-body { font-size:1rem; color:rgba(255,255,255,0.45); line-height:1.85; margin-bottom:10px; }
.market-body strong { color:rgba(255,255,255,0.8); font-weight:500; }
.market-source { font-size:0.62rem; color:rgba(255,255,255,0.2); margin-top:18px; line-height:1.6; }
.chart { display:flex; flex-direction:column; gap:7px; }
.chart-row { display:flex; align-items:center; gap:10px; }
.chart-label { font-size:0.68rem; color:rgba(255,255,255,0.35); width:150px; text-align:right; flex-shrink:0; }
.chart-bar-wrap { flex:1; height:24px; background:rgba(255,255,255,0.04); overflow:hidden; }
.chart-bar { height:100%; display:flex; align-items:center; justify-content:flex-end; padding-right:8px; }
.chart-bar.top { background:var(--gold); }
.chart-bar.rest { background:rgba(255,255,255,0.1); }
.chart-pct { font-size:0.68rem; font-weight:500; }
.top .chart-pct { color:var(--navy); }
.rest .chart-pct { color:rgba(255,255,255,0.5); }
.chart-note { font-size:0.6rem; color:rgba(255,255,255,0.2); text-align:right; margin-top:8px; }

/* TESTIMONIALS */
.testimonials-section { padding:72px; background:var(--off); }
.testimonials-section .section-eyebrow { font-size:0.6rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.testimonials-section h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.4rem); font-weight:300; color:var(--navy); margin-bottom:48px; }
.t-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--light); }
.t-card { background:var(--white); padding:32px 28px; }
.t-quote { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1rem; color:var(--ink); line-height:1.7; margin-bottom:20px; }
.t-author { font-size:0.68rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--navy); }
.t-detail { font-size:0.68rem; color:var(--mid); margin-top:2px; }
.t-wide { grid-column:1/-1; background:var(--navy); padding:36px 40px; }
.t-wide .t-quote { color:rgba(255,255,255,0.75); }
.t-wide .t-author { color:var(--gold2); }
.t-wide .t-detail { color:rgba(255,255,255,0.3); }

/* HV BANNER */
.hv-banner {
  padding:52px 72px; background:var(--white);
  border-top:3px solid var(--gold); border-bottom:1px solid var(--light);
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.hv-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:400; color:var(--navy); margin-bottom:6px; }
.hv-sub { font-size:1rem; color:var(--mid); line-height:1.7; max-width:460px; }
.btn-navy { display:inline-block; padding:13px 32px; background:var(--navy); color:var(--white); font-size:0.72rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; text-decoration:none; white-space:nowrap; transition:background 0.2s; }
.btn-navy:hover { background:var(--navy2); }

/* CONTACT */
.contact-section { display:grid; grid-template-columns:1fr 1fr; background:var(--navy); }
.contact-left { padding:72px; border-right:1px solid rgba(255,255,255,0.05); display:flex; flex-direction:column; justify-content:center; }
.contact-eyebrow { font-size:0.6rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.contact-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; color:var(--white); line-height:1.2; margin-bottom:18px; }
.contact-title em { font-style:italic; color:var(--gold2); }
.contact-body { font-size:1rem; color:rgba(255,255,255,0.4); line-height:1.85; margin-bottom:32px; }
.c-detail { margin-bottom:16px; }
.c-label { font-size:0.58rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:3px; }
.c-value { font-size:0.95rem; color:var(--white); text-decoration:none; display:block; }
.c-value:hover { color:var(--gold2); }
.c-value.small { font-size:0.8rem; color:rgba(255,255,255,0.35); line-height:1.6; }
.contact-right { padding:72px; display:flex; flex-direction:column; justify-content:center; }
.contact-form { display:flex; flex-direction:column; gap:11px; }
.contact-form input, .contact-form textarea {
  padding:12px 15px; border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04); font-family:'Outfit',sans-serif; font-size:0.85rem;
  font-weight:300; color:var(--white); outline:none; transition:border-color 0.2s; width:100%;
}
.contact-form input:focus, .contact-form textarea:focus { border-color:var(--gold); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color:rgba(255,255,255,0.2); }
.contact-form textarea { resize:vertical; min-height:90px; }
.btn-submit { padding:13px; background:var(--gold); color:var(--white); border:none; font-family:'Outfit',sans-serif; font-size:0.72rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; cursor:pointer; transition:background 0.2s; }
.btn-submit:hover { background:var(--gold2); }

/* FOOTER */
footer { background:#060F1A; padding:24px 72px; display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(200,144,42,0.12); }
.footer-logo { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; letter-spacing:0.06em; color:rgba(255,255,255,0.3); }
.footer-logo span { color:var(--gold); }
.footer-links { display:flex; gap:22px; list-style:none; }
.footer-links a { font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.22); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--gold); }
.footer-copy { font-size:0.62rem; color:rgba(255,255,255,0.15); }

/* MOBILE */
@media (max-width:900px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero, .expired-section, .about-section, .market-section, .contact-section { grid-template-columns:1fr; }
  .hero-left { padding:52px 24px; }
  .hero-right { height:60vw; }
  .hero-right::after { background:linear-gradient(to bottom, var(--navy) 0%, transparent 30%); }
  .intro-strip { flex-direction:column; padding:40px 24px; gap:28px; }
  .intro-stats { justify-content:center; }
  .expired-left, .expired-right { padding:48px 24px; }
  .about-section { grid-template-columns:1fr; }
  .about-img { height:320px; }
  .about-text { padding:48px 24px; border-left:none; border-top:1px solid var(--light); }
  .market-section { padding:52px 24px; gap:40px; }
  .testimonials-section { padding:52px 24px; }
  .t-grid { grid-template-columns:1fr; }
  .t-wide { padding:28px 20px; }
  .hv-banner { flex-direction:column; padding:44px 24px; text-align:center; }
  .contact-left, .contact-right { padding:52px 24px; }
  .contact-section { grid-template-columns:1fr; }
  footer { flex-direction:column; gap:14px; text-align:center; padding:22px 24px; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
  .chart-label { width:90px; font-size:0.62rem; }
}
</style>
</head>
<body>

<!-- NAV -->
<nav>
  <a href="/" class="nav-logo">
    <span class="nav-logo-name">Marta <span>Walsh</span></span>
    <span class="nav-logo-divider"></span>
    <span class="nav-logo-sub">Walsh, Better.</span>
  </a>
  <ul class="nav-links">
    <li><a href="#expired">Expired Listing?</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#testimonials">Reviews</a></li>
    <li><a href="#contact">Contact</a></li>
    <li><a href="/home-value/" class="nav-cta">Home Value</a></li>
  </ul>
  <div class="hamburger" onclick="toggleMenu()"><span></span><span></span><span></span></div>
</nav>

<!-- HERO -->
<section class="hero">
  <div class="hero-left">
    <p class="hero-location">Scottsdale &nbsp;·&nbsp; Paradise Valley &nbsp;·&nbsp; Phoenix</p>
    <p class="hero-name">Marta Walsh</p>
    <h1 class="hero-title">Luxury real estate,<br><em>sold properly.</em></h1>
    <p class="hero-sub">Specialist seller representation in Arizona's most competitive luxury markets. More buyers, stronger marketing, better results.</p>
    <div class="hero-actions">
      <a href="#contact" class="btn-gold">Schedule a Conversation</a>
      <a href="/home-value/" class="btn-text">What's my home worth</a>
    </div>
  </div>
  <div class="hero-right">
    <img src="images/slide4.jpg" alt="Scottsdale Luxury Property" id="hero-img" />
  </div>
</section>

<!-- INTRO STRIP -->
<div class="intro-strip">
  <div class="intro-text">
    <p>Marta Walsh came to Arizona real estate from Wall Street — NYU Stern finance degree, years of trading and market-making. <strong>That background changes how she prices, negotiates, and reads a market.</strong> 15 years in Scottsdale and Paradise Valley luxury, focused almost entirely on sellers.</p>
  </div>
  <div class="intro-stats">
    <div class="i-stat">
      <div class="i-stat-num">24.5%</div>
      <div class="i-stat-label">Market Share<br>N. Scottsdale $1M+</div>
    </div>
    <div class="i-stat">
      <div class="i-stat-num">98%</div>
      <div class="i-stat-label">List-to-Sale<br>Price Ratio</div>
    </div>
    <div class="i-stat">
      <div class="i-stat-num">15+</div>
      <div class="i-stat-label">Years in<br>Luxury Market</div>
    </div>
  </div>
</div>

<!-- EXPIRED GATEWAY -->
<section class="expired-section" id="expired">
  <div class="expired-left">
    <span class="expired-tag">For homeowners whose listing didn't sell</span>
    <h2 class="expired-title">Did your listing<br><strong>expire?</strong></h2>
    <p class="expired-body">A failed listing isn't bad luck. It's usually a solvable problem — wrong pricing strategy, weak photography, limited buyer reach. <strong>We've taken listings that sat for years and sold them in days.</strong></p>
    <p class="expired-body">If you received outreach from Marta, she's already researched your property and believes she can sell it. The conversation is free.</p>
    <a href="#contact" class="btn-gold" style="margin-top:8px;">Talk to Marta — No Obligation</a>
  </div>
  <div class="expired-right">
    <div class="case-compare">
      <div class="case-box before">
        <div class="case-days">501</div>
        <div class="case-result">Days on Market</div>
        <div class="case-label">Result: Expired</div>
      </div>
      <div class="case-box after">
        <div class="case-days">10</div>
        <div class="case-result">Days on Market</div>
        <div class="case-label">Result: Sold</div>
      </div>
    </div>
    <p class="expired-quote">
      "We used another broker for a year before listing with Marta and Matt and were very pleased with the change. They never pushed for a concessionary sale — they felt our home was priced correctly. This rang true when it sold."
      <cite>— Pam & Glen, Paradise Valley</cite>
    </p>
  </div>
</section>

<!-- ABOUT -->
<section class="about-section" id="about">
  <div class="about-img">
    <img src="images/marta-primary.jpg" alt="Marta Walsh" />
  </div>
  <div class="about-text">
    <p class="about-eyebrow">About Marta</p>
    <h2 class="about-name">Marta Walsh</h2>
    <p class="about-role">Lyon's Elite · Top 1% · Russ Lyon Sotheby's International Realty</p>
    <p class="about-body">Before Arizona, Marta spent years on Wall Street — trading, market-making, learning how pricing really works under pressure. That background is rare in real estate, and it shows. <strong>She reads markets differently than most agents.</strong></p>
    <p class="about-body">A NYU Stern School of Business graduate with a BS in Finance & Marketing, she brings the same analytical discipline to every listing — pricing strategy, negotiation, timing. 15 years in Scottsdale, Paradise Valley, and Phoenix luxury real estate, consistently ranked in the top 1% of agents at Russ Lyon Sotheby's.</p>
    <p class="about-body" style="font-style:italic;color:#a0b0bf;">"Walsh, Better."</p>
    <a href="#contact" class="btn-gold" style="margin-top:16px;">Work With Marta</a>
  </div>
</section>

<!-- MARKET DATA -->
<section class="market-section">
  <div>
    <p class="market-eyebrow">By the Numbers</p>
    <h2 class="market-title">The most powerful<br>platform in Arizona<br><em>luxury.</em></h2>
    <p class="market-body">In North Scottsdale's $1M+ market, <strong>Russ Lyon Sotheby's holds 24.5% market share — more than double Compass at 10.9%.</strong> More buyers. More relationships. More exposure for your listing from day one.</p>
    <p class="market-source">Source: ARMLS via BrokerMetrics® · Total $ Volume by Broker ($1M+) · North Scottsdale · 02/01/2025–01/31/2026</p>
  </div>
  <div>
    <div class="chart">
      <div class="chart-row"><span class="chart-label">Russ Lyon Sotheby's</span><div class="chart-bar-wrap"><div class="chart-bar top" style="width:100%"><span class="chart-pct">24.5%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">Compass</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:44.5%"><span class="chart-pct">10.9%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">HomeSmart</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:29.8%"><span class="chart-pct">7.3%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">Silverleaf Realty</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:24.5%"><span class="chart-pct">6.0%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">eXp Realty</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:18.4%"><span class="chart-pct">4.5%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">RE/MAX</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:15.1%"><span class="chart-pct">3.7%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">Berkshire Hathaway</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:12.7%"><span class="chart-pct">3.1%</span></div></div></div>
      <div class="chart-row"><span class="chart-label">Keller Williams</span><div class="chart-bar-wrap"><div class="chart-bar rest" style="width:11.4%"><span class="chart-pct">2.8%</span></div></div></div>
    </div>
    <p class="chart-note">$ Volume by Broker · North Scottsdale $1M+ · Feb 2025–Jan 2026</p>
  </div>
</section>

<!-- TESTIMONIALS -->
<section class="testimonials-section" id="testimonials">
  <p class="section-eyebrow">Client Reviews</p>
  <h2>In their own words</h2>
  <div class="t-grid">
    <div class="t-card">
      <p class="t-quote">"We listed on a Tuesday, had an offer the following Monday at 98% of asking price. The first open house drew as many as 50 people."</p>
      <div class="t-author">Ross & Dianna A.</div>
      <div class="t-detail">Scottsdale · Sold in 7 days</div>
    </div>
    <div class="t-card">
      <p class="t-quote">"Having bought and sold 16 homes all across the US, we've never experienced such professionalism and expertise."</p>
      <div class="t-author">Denise & Eddie</div>
      <div class="t-detail">Scottsdale · Seller</div>
    </div>
    <div class="t-card">
      <p class="t-quote">"She sold in just five days so that I was able to purchase and close within the same week."</p>
      <div class="t-author">Karen T.</div>
      <div class="t-detail">Gainey Ranch · Bought & Sold 16 Homes</div>
    </div>
    <div class="t-wide">
      <p class="t-quote">"When we first listed, we chose a well-known 'Team' company. Few showings. We took our house off the market for the summer. When it was time to re-list, one agent stood out — Marta Walsh. She said the photos weren't quality enough for a luxury property like ours. She was right. We appreciate Marta's cheerful tenacity and Matt's willingness to try anything. They always listened and stuck with us through a lengthy, tough market."</p>
      <div class="t-author">Bob K.</div>
      <div class="t-detail">North Scottsdale · Bought & Sold 3 Times with Marta</div>
    </div>
    <div class="t-card">
      <p class="t-quote">"We used another broker for a year before listing with them and were very pleased with the change."</p>
      <div class="t-author">Pam & Glen</div>
      <div class="t-detail">Paradise Valley · Previously listed 1 year elsewhere</div>
    </div>
    <div class="t-card">
      <p class="t-quote">"Marta is the best you will ever work with."</p>
      <div class="t-author">Mitch L.</div>
      <div class="t-detail">North Scottsdale · Seller</div>
    </div>
    <div class="t-card">
      <p class="t-quote">"19 months later you found me everything on my check list. Real estate is definitely your passion."</p>
      <div class="t-author">Jim W.</div>
      <div class="t-detail">Paradise Valley · Bought & Sold 10 Homes</div>
    </div>
  </div>
</section>

<!-- HOME VALUE -->
<div class="hv-banner">
  <div>
    <h2 class="hv-title">What is your home worth right now?</h2>
    <p class="hv-sub">Get an instant Zillow estimate — then Marta's real assessment. No email required to see your number.</p>
  </div>
  <a href="/home-value/" class="btn-navy">Check My Home Value →</a>
</div>

<!-- CONTACT -->
<section class="contact-section" id="contact">
  <div class="contact-left">
    <p class="contact-eyebrow">Get In Touch</p>
    <h2 class="contact-title">Let's talk<br><em>strategy.</em></h2>
    <p class="contact-body">Whether you're ready to list, just thinking about it, or your last listing didn't work out — a conversation costs nothing.</p>
    <div class="c-detail">
      <div class="c-label">Direct</div>
      <a href="tel:4802745710" class="c-value">480 274 5710</a>
    </div>
    <div class="c-detail">
      <div class="c-label">Email</div>
      <div class="c-label">Email</div>
      <a id="email-primary" class="c-value" href="#"></a>
      <a id="email-secondary" class="c-value" style="font-size:0.82rem;color:rgba(255,255,255,0.4);margin-top:2px;" href="#"></a>
      <script>
        (function(){
          var e1='marta',d1='martawalsh.com';
          var e2='marta.walsh',d2='russlyon.com';
          var a1=document.getElementById('email-primary');
          var a2=document.getElementById('email-secondary');
          a1.href='mailto:'+e1+'@'+d1; a1.textContent=e1+'@'+d1;
          a2.href='mailto:'+e2+'@'+d2; a2.textContent=e2+'@'+d2;
        })();
      </script>
    </div>
    <div class="c-detail">
      <div class="c-label">Office</div>
      <span class="c-value small">Russ Lyon Sotheby's International Realty<br>6900 E Camelback Rd, Suite 110<br>Scottsdale, AZ 85251</span>
    </div>
  </div>
  <div class="contact-right">
    <form class="contact-form" onsubmit="handleContact(event)">
      <input type="text" placeholder="Your Name" required />
      <input type="email" placeholder="Email Address" required />
      <input type="tel" placeholder="Phone Number" />
      <input type="text" placeholder="Property Address (if known)" />
      <textarea placeholder="Tell me about your situation..."></textarea>
      <button type="submit" class="btn-submit">Send Message →</button>
    </form>
  </div>
</section>

<!-- FOOTER -->
<footer>
  <span class="footer-logo">Marta <span>Walsh</span></span>
  <ul class="footer-links">
    <li><a href="#expired">Expired Listing</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#testimonials">Reviews</a></li>
    <li><a href="#contact">Contact</a></li>
    <li><a href="/home-value/">Home Value</a></li>
  </ul>
  <div style="display:flex;align-items:center;gap:20px;">
    <a href="https://www.instagram.com/martawalsh/" target="_blank" style="color:rgba(255,255,255,0.25);text-decoration:none;font-size:0.62rem;letter-spacing:0.12em;text-transform:uppercase;" onmouseover="this.style.color='#C8902A'" onmouseout="this.style.color='rgba(255,255,255,0.25)'">Instagram</a>
    <a href="https://www.linkedin.com/in/marta-walsh-8175458/" target="_blank" style="color:rgba(255,255,255,0.25);text-decoration:none;font-size:0.62rem;letter-spacing:0.12em;text-transform:uppercase;" onmouseover="this.style.color='#C8902A'" onmouseout="this.style.color='rgba(255,255,255,0.25)'">LinkedIn</a>
    <span class="footer-copy">© 2025 Marta Walsh · Russ Lyon Sotheby's · Equal Housing Opportunity</span>
  </div>
</footer>

<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
function toggleMenu() {
  const links = document.querySelector('.nav-links');
  const open = links.style.display === 'flex';
  links.style.cssText = open ? '' : 'display:flex;flex-direction:column;position:fixed;top:62px;left:0;right:0;background:rgba(11,31,53,0.98);padding:22px 28px;gap:18px;border-top:1px solid rgba(255,255,255,0.06);z-index:99;';
}

function handleContact(e) {
  e.preventDefault();
  const btn = e.target.querySelector('button');
  btn.textContent = 'Sent ✓