@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap'); *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --color-primary: #0F172A; --color-secondary: #1E293B; --color-accent: #b8841c; --color-text-primary: #0F172A; --color-text-secondary: #4B5563; --color-text-light: #9CA3AF; --color-bg-primary: #F8FAFC; --color-bg-secondary: #EEF2F6; --color-bg-card: rgba(255, 255, 255, 0.96); --color-border: #E5E7EB; --color-shadow: rgba(15, 23, 42, 0.08); --font-primary: 'Montserrat', sans-serif; --font-secondary: 'Cormorant Garamond', serif; --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem; --radius-md: 10px; --radius-lg: 16px; --transition-fast: 0.2s ease; --transition-normal: 0.35s ease; --transition-slow: 0.6s ease; --z-header: 10; } .dark-mode { --color-primary: #F8FAFC; --color-secondary: #1E293B; --color-accent: #c89b34; --color-text-primary: #E5E7EB; --color-text-secondary: #9CA3AF; --color-bg-primary: #0B1220; --color-bg-secondary: #111827; --color-bg-card: rgba(15, 23, 42, 0.9); --color-shadow: rgba(0, 0, 0, 0.35); } /* Dark mode: Tailwind utility compatibility (contrast fixes) */ .dark-mode main, .dark-mode #main-content { color: var(--color-text-primary); } .dark-mode main .text-primary, .dark-mode #main-content .text-primary { color: var(--color-text-primary) !important; } .dark-mode main .text-secondary, .dark-mode #main-content .text-secondary { color: var(--color-text-primary) !important; } .dark-mode main .text-gray-700, .dark-mode #main-content .text-gray-700 { color: #E5E7EB !important; } .dark-mode main .text-gray-600, .dark-mode #main-content .text-gray-600 { color: #D1D5DB !important; } .dark-mode main .text-gray-500, .dark-mode #main-content .text-gray-500 { color: #9CA3AF !important; } .dark-mode main .text-gray-400, .dark-mode #main-content .text-gray-400 { color: #9CA3AF !important; } .dark-mode main .bg-white, .dark-mode #main-content .bg-white { background-color: rgba(15, 23, 42, 0.92) !important; border-color: rgba(255, 255, 255, 0.10) !important; } .dark-mode main .bg-light, .dark-mode #main-content .bg-light { background-color: rgba(17, 24, 39, 1) !important; } .dark-mode main .bg-gray-50, .dark-mode #main-content .bg-gray-50 { background-color: rgba(15, 23, 42, 0.92) !important; } .dark-mode main .border-gray-100, .dark-mode #main-content .border-gray-100 { border-color: rgba(255, 255, 255, 0.08) !important; } .dark-mode main .border-gray-200, .dark-mode #main-content .border-gray-200 { border-color: rgba(255, 255, 255, 0.10) !important; } html { font-size: 16px; scroll-behavior: smooth; } body { font-family: var(--font-primary); color: var(--color-text-primary); background-color: var(--color-bg-primary); line-height: 1.6; } h1, h2, h3 { font-family: var(--font-secondary); font-weight: 700; color: inherit; margin-bottom: var(--space-md); letter-spacing: -0.01em; } .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 { color: #fff; } a { color: var(--color-accent); text-decoration: none; transition: color var(--transition-fast); } a:hover { text-decoration: underline; } .container { max-width: 1200px; margin: 0 auto; padding: var(--space-lg); } .card { background-color: var(--color-bg-card); border-radius: var(--radius-lg); box-shadow: 0 8px 24px var(--color-shadow); padding: var(--space-lg); margin-bottom: var(--space-lg); border: 1px solid var(--color-border); } .footer { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--color-bg-card); padding: var(--space-md); text-align: center; z-index: var(--z-header); box-shadow: 0 -4px 18px var(--color-shadow); } .dark-mode-toggle { position: fixed; top: 20px; right: 20px; background: var(--color-bg-card); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 5px var(--color-shadow); z-index: var(--z-header); border: none; } .fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; } /* Direct Answer GEO Boxes */ .direct-answer { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border-left: 4px solid var(--color-accent); padding: var(--space-lg) var(--space-xl); margin: var(--space-xl) 0; border-radius: var(--radius-md); box-shadow: 0 4px 12px var(--color-shadow); transition: transform var(--transition-fast), box-shadow var(--transition-fast); } .direct-answer:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--color-shadow); } .direct-answer-question { font-size: 1.25rem; font-weight: 600; color: var(--color-primary); margin-bottom: var(--space-md); font-family: var(--font-secondary); } .direct-answer-text { font-size: 1.1rem; line-height: 1.7; color: var(--color-text-secondary); padding: var(--space-md); background: rgba(184, 132, 28, 0.05); border-radius: var(--radius-md); } .direct-answer-text strong { color: var(--color-accent); font-weight: 700; display: block; margin-bottom: var(--space-sm); } .direct-answer-author { font-size: 0.85rem; color: var(--color-text-light); margin-top: var(--space-sm); font-style: italic; } .dark-mode .direct-answer { background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.95) 100%); border-left-color: #c89b34; } .dark-mode .direct-answer-text { background: rgba(200, 155, 52, 0.1); } @keyframes fadeIn { to { opacity: 1; } }
Old Town & Near North

Old Town Divorce Lawyer

Chicago's most historic neighborhood deserves attorneys who understand the complexities of established families, significant assets, and the importance of discretion.

Old Town's Unique Divorce Challenges

Historic Property Division

Victorian row houses and historic townhomes require specialized valuation. Landmark restrictions, renovation costs, and architectural significance all affect fair division.

Executive Compensation

Old Town executives have complex pay packages: stock options, deferred comp, golden parachutes, and bonus structures. We ensure complete analysis of all compensation elements.

Privacy & Discretion

High-profile professionals need confidential proceedings. We structure settlements and court filings to protect your privacy and professional reputation.

Serving Old Town & Nearby

Old Town Triangle

Second City, historic homes

Wells Street

Boutiques, dining scene

Cabrini-Green

New development, mixed-use

Lincoln Park Border

Zoo access, family-friendly

Get Your Free Old Town Divorce Checklist

Comprehensive checklist for established families: historic property documentation, executive compensation analysis, retirement planning, and legacy asset protection.

Download Free Checklist

Historic Property Division in Old Town

Old Town Triangle is one of Chicago's most treasured historic districts. Victorian row houses, Italianate townhomes, and Queen Anne mansions require specialized appraisal and division strategies that standard residential divorce approaches don't address.

Landmark Designation Impact

Chicago Landmark and National Register properties face restrictions that affect value:

  • Exterior modification restrictions
  • Window and door replacement requirements
  • Tax incentives for preservation
  • Insurance and maintenance premiums

Renovation Credits

Many Old Town couples have invested heavily in restoration during marriage:

  • Document renovation expenditures
  • Track sweat equity contributions
  • Value improvement vs. maintenance
  • Consider pre-marital vs. marital investment

Old Town Art Fair Homes

Properties along the Art Fair route (often on Orleans, Menomonee, or Wisconsin) carry prestige premiums. We've handled divorces involving homes that regularly open for the festival—these require appraisers who understand the unique Old Town market.

1850s-1890s

Typical construction era

$1.5M-$4M+

Single-family range

15-20%

Historic premium

Entertainment Industry Divorces

Second City Alumni

Old Town is synonymous with improv comedy. Performer income is irregular—touring, residuals, development deals, and side projects create complex income pictures. We help document and project earnings for support calculations.

Musicians & Performers

Chicago's live music scene means royalties, session work, and touring income. We trace ASCAP/BMI payments, merchandise revenue, and catalog ownership as marital property.

Writers & Creators

Book advances, screenplay options, and development deals create future income streams. We value intellectual property created during marriage and structure ongoing royalty division.

The Creative Income Challenge

Entertainment income rarely follows predictable patterns. A spouse may earn $30,000 one year and $300,000 the next. Illinois courts increasingly use:

  • 3-5 year income averaging
  • Industry-specific earning capacity analysis
  • Pipeline and development deal valuation
  • Reviewable maintenance provisions

SAG-AFTRA & Union Benefits

Union performers often have valuable benefits that are marital property:

  • SAG-AFTRA pension credits
  • Health fund eligibility
  • Residual payment streams
  • Rerun and syndication rights

Long-Term Marriage Considerations

Old Town attracts established families—couples married 20, 30, or 40+ years. These "gray divorces" involve unique considerations:

  • Permanent Maintenance

    Marriages of 20+ years typically result in permanent or indefinite maintenance in Illinois

  • Retirement Division

    Pensions, 401(k)s, deferred compensation, and Social Security strategies all require careful planning

  • Healthcare Continuity

    COBRA is expensive. We negotiate healthcare provisions and plan for Medicare transitions

  • Adult Children Dynamics

    No custody orders, but estate planning, family business succession, and holiday arrangements matter

Illinois Maintenance Guidelines

For marriages of different lengths:

5-year marriage 1.0 years duration
10-year marriage 4.4 years duration
15-year marriage 7.2 years duration
20-year marriage Permanent (indefinite)

*Simplified guidelines. Actual duration depends on multiple factors including income levels and individual circumstances.

Wells Street Small Business Division

Old Town's Wells Street corridor features boutique retail, art galleries, and specialty businesses. Many couples own or co-own these establishments, creating complex division scenarios:

  • Retail businesses—Inventory, lease value, customer lists, and brand reputation
  • Art galleries—Consigned vs. owned inventory, artist relationships, exhibition contracts
  • Professional practices—Therapists, architects, and consultants with client bases
  • Restaurant/bars—Similar to West Loop but often single-location owner-operators

Business Buyout Options

Cash Buyout

Operating spouse pays fair value for other's interest. Requires liquidity or financing.

Asset Offset

Trade business interest for equivalent assets (home equity, retirement, etc.).

Installment Payments

Structured buyout over time, often tied to business performance.

Continued Co-Ownership

Rare but possible with clear operating agreements and exit triggers.

Privacy Protection Strategies

  • Request impoundment of sensitive financial documents
  • Use initials or pseudonyms in public filings where permitted
  • Negotiate comprehensive settlement to avoid trial publicity
  • Include confidentiality provisions in settlement agreements
  • Coordinate timing to avoid business-critical periods
  • Manage social media presence during proceedings

Discretion for Old Town Professionals

Old Town's established community means your neighbors, colleagues, and clients may know each other. High-profile executives, physicians, and business owners need divorce handled with absolute discretion.

Cook County divorce filings are public records. But strategic case management—settlement where possible, sealed exhibits, and confidential mediation—can protect your reputation and business relationships throughout the process.

Related Resources for Old Town Residents

Comprehensive guides and checklists specifically designed for your neighborhood's unique divorce considerations.

Protecting What You've Built

Established families deserve experienced counsel who understands the stakes. Let's discuss your situation in confidence.

Call Intake