Senior care and assisted-living websites face an unusual accessibility paradox: their primary audience is, by definition, more likely than any other demographic to live with vision loss, hearing loss, motor impairment, or cognitive decline, yet the industry has historically treated websites as marketing brochures aimed at adult children rather than the residents and prospective residents themselves. The result is a sector where inaccessible photo carousels, low-contrast brochure-style typography, sign-up forms requiring fine-motor input, video tours without captions, and PDF rate sheets without a tagged structure are the norm, not the exception. Both the residents researching their own care options and the family members coordinating that care are systematically excluded from completing the most consequential decisions about late-life housing. Beyond the moral problem, the legal exposure is rising sharply. Senior-care providers are typically considered places of public accommodation under ADA Title III; many also receive federal funding (Medicare, Medicaid, HUD Section 202) that triggers Section 504 obligations and, increasingly, the April 2024 Department of Justice rule requiring WCAG 2.1 AA conformance for state-and-local-government services on a 2026 and 2027 compliance schedule. European operators and U.S. groups marketing to EU expatriates are subject to the European Accessibility Act effective June 28, 2025. Plaintiffs' firms have begun filing serial demand letters against assisted-living chains, and a 2025 audit by an aging-services consortium of 100 senior-care websites found that 91 percent failed at minimum WCAG 2.1 AA color-contrast requirements and 78 percent had inaccessible tour-scheduling forms. This guide covers the legal framework that applies to senior-care websites, the specific accessibility failures common in the sector, and a compliance checklist that operations and marketing teams can use to remediate.

Legal Requirements

Key Accessibility Issues in Senior Care & Assisted Living

Body Text Below 4.5:1 Contrast on Brochure-Style Layouts

Senior-living marketing sites frequently use light gray body text (typically #888 or #999 on white) and overlay text on full-bleed photographic backgrounds without sufficient contrast. Older readers, including the very prospects whose families are evaluating the community, lose acuity and contrast sensitivity with age. The WCAG 1.4.3 minimum of 4.5:1 is a floor, not a comfortable reading level for older eyes.

How to fix:

Audit every text color against its background using a tool like axe DevTools, WebAIM Contrast Checker, or Stark. Move body text to at least #595959 on white (4.6:1) and ideally to #333 (12.6:1). For text over photos, add a semi-transparent overlay that guarantees 4.5:1, or move text out of the image into a solid panel below. Avoid italicized body text and minimum sizes below 16px; many senior-care prospects benefit from 18-20px base sizes.

Tour-Booking Forms with Inaccessible Custom Date Pickers and Required-Field Patterns

The most consequential interaction on a senior-care site is booking a community tour, yet these forms commonly use custom date pickers without ARIA grid semantics, dropdown menus that capture keyboard focus poorly, and asterisk-only required-field indicators with no programmatic association. Family members using screen readers, keyboard-only navigation, or speech-input software frequently cannot complete the form.

How to fix:

Use native HTML <input type="date"> wherever possible; the browser-provided picker is significantly more accessible than any third-party widget. If custom widgets are required, follow the ARIA Authoring Practices date-picker pattern with proper roving tabindex, aria-selected, and aria-current attributes. Mark required fields with both a visible "required" label and aria-required="true". Provide error messages associated via aria-describedby and move focus to the first error on submission failure.

Photo Carousels of the Community Without Pause Controls or Alt Text

Auto-rotating image carousels showcasing dining rooms, common areas, and resident activities are a senior-care website cliche. They almost universally lack a pause/stop control (violating WCAG 2.2.2 Pause, Stop, Hide), cycle faster than five seconds, and use empty or generic alt text ("photo1.jpg") that conveys nothing about the visual content to a screen-reader user.

How to fix:

Add a clearly visible Pause/Play button that respects user choice across page loads. Slow cycle time to a minimum of seven seconds, or eliminate auto-advance entirely and let users navigate manually. Write descriptive alt text for each image ("Residents playing chess in the sunlit common room") that conveys the marketing intent the photo was chosen for. If carousels are purely decorative, mark them with role="presentation" and offer the same imagery as a static gallery.

Untagged PDF Rate Sheets, Floor Plans, and Care Brochures

Pricing, level-of-care details, floor plans, and waiver documents are typically distributed as untagged PDFs exported directly from InDesign, Word, or marketing software. These documents have no reading order, no heading hierarchy, no alt text on diagrams, and no accessible form fields when waivers or applications are interactive.

How to fix:

Tag every PDF (Acrobat Pro: Tools > Accessibility > Autotag Document, then manually verify reading order with the Reading Order Tool). Apply correct heading levels (H1 for the document title, H2 for sections). Add alt text to every meaningful image, including floor plans (describe the layout in prose). Mark decorative graphics as artifacts. For interactive forms, use Acrobat's Form Field tool to label every field and set a logical tab order. Where possible, provide an accessible HTML alternative alongside the PDF.

Video Tours and Resident Testimonials Without Captions or Transcripts

Video walking tours of communities and resident-testimonial videos are core marketing assets and a major accessibility failure point. They are typically posted to YouTube or Vimeo embeds without captions, no audio description for sighted-narrator-free segments, and no transcript on the page. Older prospects with hearing loss—a substantial fraction of the target demographic—are simply unable to evaluate the content.

How to fix:

Provide accurate human-edited captions on every video; do not rely on YouTube auto-captions, which fall well short of WCAG 1.2.2 accuracy requirements. Add a downloadable transcript link adjacent to each embed. For tours that include silent walking footage, include audio descriptions or a separate descriptive transcript. Test the video player itself for keyboard accessibility (Vimeo is generally compliant; YouTube is acceptable; many third-party players are not).

Compliance Checklist

  • All body text meets 4.5:1 contrast against its background; large text meets 3:1; UI components meet 3:1
  • Base font size is at least 16px (preferably 18px) and text resizes to 200 percent without horizontal scrolling at 1280px viewport
  • Tour-booking forms use native HTML inputs where possible; custom widgets follow ARIA Authoring Practices
  • Required fields are marked with both visible text and aria-required; error messages move focus and announce via aria-describedby
  • Photo carousels include pause/play controls, cycle no faster than seven seconds, and have descriptive alt text
  • All PDFs (rate sheets, floor plans, brochures, waivers) are tagged with correct reading order, heading hierarchy, and image alt text
  • Video tours and testimonials have human-edited captions, transcripts, and audio description where needed
  • Resident and family portals meet WCAG 2.1 AA in addition to marketing pages, including secure-message and bill-pay flows
  • An accessibility statement documents WCAG 2.1 AA conformance target, contact channel for accommodations, and last review date
  • Staff are trained to handle inbound accessibility-accommodation requests and route them to a designated accessibility coordinator

Further Reading

Other Industry Guides