diff --git a/1st-gen/packages/overlay/ACCESSIBILITY.md b/1st-gen/packages/overlay/ACCESSIBILITY.md
new file mode 100644
index 00000000000..0f4b1222473
--- /dev/null
+++ b/1st-gen/packages/overlay/ACCESSIBILITY.md
@@ -0,0 +1,516 @@
+# Accessibility
+
+This guide covers accessibility best practices for implementing overlays in Spectrum Web Components.
+
+## Table of contents
+
+- [Focus management](#focus-management)
+- [ARIA patterns](#aria-patterns)
+- [Keyboard navigation](#keyboard-navigation)
+- [Screen reader support](#screen-reader-support)
+- [Color contrast and visual indicators](#color-contrast-and-visual-indicators)
+- [Common accessibility issues](#common-accessibility-issues)
+
+## Focus management
+
+Proper focus management is critical for keyboard users and screen reader users to interact with overlays effectively.
+
+### Focus behavior by overlay type
+
+Different overlay types have different focus management behaviors:
+
+**`modal` and `page` overlays:**
+
+- Always trap focus within the overlay
+- Focus moves to first focusable element (or overlay container if none)
+- Cannot tab outside the overlay
+- ESC key behavior: `modal` cannot close with ESC, `page` can close with ESC
+
+```html
+ Are you sure you want to proceed? Informational content Dialog content... Loading... Subsection content... More content...Confirm Action
+ Dialog Title
+ Main Dialog Title
+
+
+ Subsection Title
+ Another Subsection
+ Edit Profile
+
+
Detailed help content...
+