const { Header, Card, JourneyCard, Badge, Tag, Button, Timeline, CTASection } = window.AcornTitleDesignSystem_b6a569; function SiteFooter() { return ( ); } function Check() { return ; } const logoSizeOverride = ; function AppQuickLink() { React.useEffect(() => { const header = document.querySelector('header'); if (!header) return; const rightGroup = header.querySelector(':scope > div > div:last-child'); if (!rightGroup || rightGroup.querySelector('.app-quick-link')) return; const a = document.createElement('a'); a.href = 'https://app.acorn-title.com'; a.target = '_blank'; a.rel = 'noopener'; a.className = 'app-quick-link'; a.setAttribute('aria-label', 'Open the Acorn App'); a.style.cssText = 'display:flex;align-items:center;justify-content:center;width:42px;height:42px;flex-shrink:0;color:inherit'; a.innerHTML = ''; rightGroup.insertBefore(a, rightGroup.firstChild); return () => a.remove(); }, []); return null; } function LogoHomeLink() { React.useEffect(() => { const header = document.querySelector('header'); if (!header) return; const img = header.querySelector('img[alt="Acorn Title"]'); if (!img || img.closest('a')) return; const a = document.createElement('a'); a.href = 'Acorn Homepage.html'; a.setAttribute('aria-label', 'Acorn Title home'); a.style.cssText = 'display:flex;align-items:center'; img.parentNode.insertBefore(a, img); a.appendChild(img); return () => { if (a.parentNode) { a.parentNode.insertBefore(img, a); a.remove(); } }; }, []); return null; } function TexasMark({ opacity = 0.08, size = 380 }) { return ( ); } function Section({ children, background, id, paddingTop }) { return
{children}
; } function Eyebrow({ children }) { return
{children}
; } function H2({ children, align = 'left', style, innerStyle }) { return

{children}

; } const headerLinks = (scrollTo) => [ { label: 'Home', onClick: () => window.scrollTo({ top: 0, behavior: 'smooth' }) }, { label: 'Buying', href: 'Buying.html' }, { label: 'Selling', href: 'Selling.html' }, { label: 'For Professionals', href: 'For Professionals.html' }, { label: 'About', href: 'About.html' }, { label: 'Contact', href: 'Contact.html' }, ]; function Hero({ onNavigate, fullBleed }) { if (!fullBleed) { return (
{ window.location.href = 'Order Title.html'; }} />

No one should have to wonder what happens next.

We'll handle the details behind the scenes, so you can focus on the people, plans, and moments that matter most.

); } return (
{ window.location.href = 'Order Title.html'; }} />

No one should have to wonder what happens next.

We'll handle the details behind the scenes, so you can focus on the people, plans, and moments that matter most.

); } function Chevron({ dir = 'left' }) { return ; } function FeelingsCarousel() { const scrollerRef = React.useRef(null); const [hover, setHover] = React.useState(null); const scroll = (dir) => { const el = scrollerRef.current; if (!el) return; el.scrollBy({ left: dir * 320, behavior: 'smooth' }); }; const arrowStyle = (id) => ({ width: 44, height: 44, borderRadius: '50%', border: '1.5px solid var(--border-strong)', background: hover === id ? 'var(--blue-50)' : 'var(--surface-page)', color: hover === id ? 'var(--blue-700)' : 'var(--text-heading)', display: 'flex', alignItems: 'center', justifyContent: 'center', cursor: 'pointer', transition: 'background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard)', }); return (
Why clients choose Acorn

How It Feels to Work With Us

{feelings.map((f, i) => (
{String(i + 1).padStart(2, '0')}

{f.title}

{f.copy}

))}
); } function PathCard({ imgId, title, description, ctaLabel, onClick, ctaLabel2, onClick2, placeholder, src }) { return (

{title}

{description}

{ctaLabel2 && }
); } const beliefs = ['Clear communication', 'Proactive guidance', 'Organized processes', 'Personal relationships', 'Attention to detail', 'Consistency', 'Trust']; const feelings = [ { title: 'Informed', copy: 'You always know what stage you\u2019re at and what happens next.' }, { title: 'Supported', copy: 'A real person is behind every update, ready when you have questions.' }, { title: 'Prepared', copy: 'Nothing arrives as a surprise \u2014 we tell you before you have to ask.' }, { title: 'Confident', copy: 'Every document is reviewed and organized well ahead of closing day.' }, { title: 'Cared for', copy: 'We treat your closing like it matters, because it does.' }, ]; const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{ "heroStyle": "fullBleed" }/*EDITMODE-END*/; function Homepage() { const [t, setTweak] = window.useTweaks(TWEAK_DEFAULTS); const scrollTo = (id) => document.getElementById(id)?.scrollIntoView({ behavior: 'smooth' }); return (
{logoSizeOverride} setTweak('heroStyle', v)} />

Let's Start Where You Are

Every real estate journey has its own story. We’ve built our process to support yours from the first conversation to the final signature.

{ window.location.href = 'Buying.html'; }} ctaLabel2="I Am Selling" onClick2={() => { window.location.href = 'Selling.html'; }} description="We guide buyers and sellers through every step of the closing process with clarity and confidence." /> { window.location.href = 'For Professionals.html#professional-tools'; }} description="For Realtors, lenders, builders, attorneys, investors, and referral partners: proactive communication and a seamless closing experience for your clients." />
The Acorn difference

More Than a Closing.
A Better Experience.

Every title company processes documents. Acorn is intentionally designed to remove uncertainty, simplify complexity, and build confidence throughout your transaction.

{beliefs.map((b) => (
{b}
))}
How it works

Quietly Handled, Every Step of the Way

Here's what happens behind the scenes, from the moment you open your file to the day you get your keys.

Ready to Move Forward With Confidence?

No confusion. No unnecessary stress. Just experienced professionals helping you move forward.

); } window.Homepage = Homepage;