/* =========================================================================
   Sanctuary Virtual Guide — Accessibility page styles
   -------------------------------------------------------------------------
   Depends on: navigation.css (--nv-* design tokens)
   ========================================================================= */


/* ============================ PAGE TOKENS ================================ */

:root {
    --ac-accent:        var(--nv-accent);
    --ac-accent-glow:   var(--nv-accent-glow);
    --ac-accent-muted:  var(--nv-accent-muted);
    --ac-fg:            var(--nv-fg);
    --ac-muted-fg:      var(--nv-muted-fg);
    --ac-bg:            var(--nv-bg);
    --ac-surface:       #FAF7F2;
    --ac-muted:         var(--nv-muted);
    --ac-border:        var(--nv-border);
    --ac-radius-sm:     6px;
    --ac-radius-md:     10px;
    --ac-radius-lg:     14px;
    --ac-shadow-sm:     var(--nv-shadow-sm);
    --ac-shadow-md:     var(--nv-shadow-md);
    --ac-ease:          cubic-bezier(0.22, 1, 0.36, 1);
    --ac-duration:      var(--nv-duration);
    --ac-reveal-ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

html.theme-dark,
body.dark-mode {
    --ac-surface: #0f0f14;
}


/* ============================ LAYOUT ===================================== */

.access-wrap {
    padding: 24px 20px;
    max-width: 100%;
}


/* ============================ PAGE HEADER ================================ */

.access-header {
    margin-bottom: 36px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ac-accent);
    border: 1px solid rgba(184, 134, 11, 0.25);
    background: var(--ac-accent-muted);
    border-radius: var(--ac-radius-sm);
    padding: 5px 10px;
    margin-bottom: 16px;
}

.access-badge .material-symbols-outlined {
    font-size: 14px;
}

.access-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ac-fg);
    line-height: 1.2;
    margin: 0 0 8px;
}

.access-header h1 em {
    font-style: italic;
    color: var(--ac-accent);
}

.access-rule {
    border: none;
    border-top: 1px solid var(--ac-border);
    margin: 16px 0;
}

.access-header p {
    font-size: 0.88rem;
    color: var(--ac-muted-fg);
    line-height: 1.8;
    margin: 0;
}


/* ============================ INFO BANNER ================================ */

.access-intro-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(184, 134, 11, 0.04) 100%);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 18px 20px;
    margin-bottom: 32px;
}

.access-intro-box .material-symbols-outlined {
    font-size: 22px;
    color: var(--ac-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.access-intro-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--ac-fg);
    line-height: 1.6;
}


/* ============================ SECTION CARDS ============================== */

.access-section {
    margin-bottom: 32px;
    background: var(--ac-surface);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow-sm);
}

.access-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.63rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ac-muted-fg);
    padding: 14px 20px;
    background: var(--ac-muted);
    border-bottom: 1px solid var(--ac-border);
    margin: 0;
    /* Top corners rounded explicitly so the title bar still respects
       the section's rounded outer shell when the section drops its
       `overflow: hidden` (see the `:has()` rule below). */
    border-top-left-radius: var(--ac-radius-lg);
    border-top-right-radius: var(--ac-radius-lg);
}

/* The section's `overflow: hidden` was clipping the language-picker's
   absolutely-positioned menu. Let any section that contains a
   dropdown opt out of clipping; rounded corners still hold thanks to
   the title bar's own top-corner rounding. */
.access-section:has(.access-lang-dd) {
    overflow: visible;
}

.access-section-title .material-symbols-outlined {
    font-size: 16px;
    color: var(--ac-accent);
}


/* ============================ OPTION ROWS ================================ */

.access-options-group {
    padding: 8px;
}

.access-options-group--info {
    padding: 4px 8px 8px;
}

.access-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--ac-radius-md);
    border-bottom: 1px solid var(--ac-border);
    transition: background var(--ac-duration) var(--ac-ease);
    cursor: default;
}

.access-option:last-child {
    border-bottom: none;
}

.access-option:hover {
    background: var(--ac-muted);
}

.access-option--static {
    cursor: default;
}

.access-option-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.access-option-info > .material-symbols-outlined {
    font-size: 20px;
    color: var(--ac-accent);
    flex-shrink: 0;
}

.access-option-text {
    flex: 1;
    min-width: 0;
}

.access-option-text .label-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ac-fg);
    margin: 0;
    line-height: 1.4;
}

.access-option-text .desc-text {
    font-size: 0.75rem;
    color: var(--ac-muted-fg);
    margin: 3px 0 0;
    line-height: 1.5;
}

.access-always-on {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ac-accent);
    background: var(--ac-accent-muted);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: var(--ac-radius-sm);
    padding: 4px 8px;
    white-space: nowrap;
    flex-shrink: 0;
}


/* ============================ TOGGLE SWITCH ============================== */

.toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track {
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: var(--ac-border);
    cursor: pointer;
    transition:
        background var(--ac-duration) var(--ac-ease),
        box-shadow var(--ac-duration) var(--ac-ease);
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ac-surface);
    transition: transform var(--ac-duration) var(--ac-ease);
    box-shadow: var(--ac-shadow-sm);
}

.toggle input:checked + .toggle-track {
    background: var(--ac-accent);
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.3);
}

.toggle input:checked + .toggle-track::after {
    transform: translateX(22px);
    background: #ffffff;
}

.toggle input:focus-visible + .toggle-track {
    outline: 2px solid var(--ac-accent);
    outline-offset: 2px;
}


/* ============================ TEXT SIZE CONTROL ========================== */

.text-size-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.text-size-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--ac-radius-sm);
    background: var(--ac-muted);
    border: 1.5px solid var(--ac-border);
    color: var(--ac-muted-fg);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Source Sans 3', system-ui, sans-serif;
    transition:
        background var(--ac-duration) var(--ac-ease),
        border-color var(--ac-duration) var(--ac-ease),
        color var(--ac-duration) var(--ac-ease),
        transform 120ms ease;
}

.text-size-btn:hover {
    background: var(--ac-accent);
    border-color: var(--ac-accent);
    color: #ffffff;
}

.text-size-btn:active {
    transform: scale(0.92);
}

.text-size-btn:focus-visible {
    outline: 2px solid var(--ac-accent);
    outline-offset: 2px;
}

.text-size-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ac-fg);
    background: var(--ac-muted);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-sm);
    padding: 6px 8px;
    min-width: 46px;
    text-align: center;
    letter-spacing: 0.05em;
}


/* ============================ KEYBOARD SHORTCUTS ========================= */

.access-tips-list {
    list-style: none;
    margin: 8px 0;
    padding: 0;
}

.access-tips-list li {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 11px 16px;
    border-radius: var(--ac-radius-md);
    border-bottom: 1px solid var(--ac-border);
    transition: background var(--ac-duration) var(--ac-ease);
}

.access-tips-list li:last-child {
    border-bottom: none;
}

.access-tips-list li:hover {
    background: var(--ac-muted);
}

.access-tip-keys {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 100px;
}

kbd {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ac-fg);
    background: var(--ac-muted);
    border: 1px solid var(--ac-border);
    border-radius: 4px;
    padding: 3px 7px;
    white-space: nowrap;
    display: inline-block;
    box-shadow: 0 1px 0 var(--ac-border);
}

.key-sep {
    font-size: 0.72rem;
    color: var(--ac-muted-fg);
    font-family: 'IBM Plex Mono', monospace;
}

.access-tip-desc {
    font-size: 0.83rem;
    color: var(--ac-muted-fg);
    line-height: 1.5;
    flex: 1;
}

.access-tip-sr {
    align-items: center !important;
}

.access-tip-sr .material-symbols-outlined {
    font-size: 16px;
    color: var(--ac-accent);
    flex-shrink: 0;
    min-width: 100px;
}

.access-tip-sr .access-tip-desc {
    color: var(--ac-fg);
    font-style: italic;
}


/* ============================ SAVED NOTICE =============================== */

.access-saved-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--ac-muted);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 18px 20px;
    margin-top: 8px;
    margin-bottom: 40px;
}

.access-saved-notice .material-symbols-outlined {
    font-size: 20px;
    color: var(--ac-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.access-saved-text {
    flex: 1;
}

.access-saved-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ac-fg);
    margin-bottom: 4px;
}

.access-saved-text p {
    font-size: 0.78rem;
    color: var(--ac-muted-fg);
    line-height: 1.6;
    margin: 0;
}


/* ============================ SCROLL REVEAL ============================== */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 520ms var(--ac-reveal-ease),
        transform 520ms var(--ac-reveal-ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* ============================ MOBILE LANGUAGE FAB ======================== */

.lang-fab-wrap {
    position: fixed;
    bottom: calc(var(--nv-bottom-h) + 16px);
    right: 20px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    pointer-events: none;
}

@media (min-width: 640px) {
    .lang-fab-wrap { display: none; }
}

.lang-fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nv-accent);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--nv-shadow-fab);
    transition:
        transform 280ms var(--ac-ease),
        box-shadow 280ms var(--ac-ease);
    pointer-events: auto;
}

.lang-fab:hover  { transform: scale(1.08); }
.lang-fab:active { transform: scale(0.94); }

.lang-fab .material-symbols-outlined {
    font-size: 22px;
    transition: transform 300ms var(--ac-ease);
}

.lang-fab[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(20deg);
}

.lang-fab-dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--ac-surface);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-md);
    padding: 6px;
    box-shadow: var(--ac-shadow-md);
    pointer-events: auto;
    transform-origin: bottom right;
    transform: scale(0.92) translateY(6px);
    opacity: 0;
    transition:
        opacity 220ms var(--ac-ease),
        transform 280ms var(--ac-ease);
    pointer-events: none;
}

.lang-fab-wrap.is-open .lang-fab-dropdown {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.lang-fab-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--ac-radius-sm);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Source Sans 3', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ac-muted-fg);
    white-space: nowrap;
    transition: all 200ms var(--ac-ease);
    text-align: left;
    width: 100%;
}

.lang-fab-option:hover {
    background: var(--ac-muted);
    color: var(--ac-fg);
}

.lang-fab-option.is-active {
    color: var(--ac-accent);
}

.lang-fab-option .material-symbols-outlined {
    font-size: 16px;
    opacity: 0;
    transition: opacity 180ms var(--ac-ease);
}

.lang-fab-option.is-active .material-symbols-outlined {
    opacity: 1;
}


/* ============================ RESPONSIVE ================================= */

/* Tablet */
@media (min-width: 640px) {
    .access-wrap {
        padding: 68px 36px 36px;
    }
    .access-header {
        margin-bottom: 44px;
    }
    .access-header h1 {
        font-size: 2.2rem;
    }
    .access-section {
        margin-bottom: 36px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .access-wrap {
        padding: 52px 72px;
        max-width: 900px;
        margin: 0 auto;
    }
    .access-header {
        margin-bottom: 48px;
    }
    .access-header h1 {
        font-size: 2.4rem;
    }
    .access-header p {
        font-size: 0.95rem;
    }
    .access-section {
        margin-bottom: 40px;
    }
}


/* ============================ DARK MODE ================================== */

html.theme-dark .access-intro-box,
body.dark-mode .access-intro-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
}

html.theme-dark .access-section,
body.dark-mode .access-section {
    background: #0f0f14;
    border-color: rgba(255, 255, 255, 0.08);
}

html.theme-dark .access-section-title,
body.dark-mode .access-section-title {
    background: rgba(255, 255, 255, 0.04);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html.theme-dark .access-option,
body.dark-mode .access-option {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html.theme-dark .access-option:hover,
body.dark-mode .access-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

html.theme-dark .access-tips-list li,
body.dark-mode .access-tips-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: #D8D8D8;
}

html.theme-dark .access-tips-list li:hover,
body.dark-mode .access-tips-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

html.theme-dark .text-size-btn,
body.dark-mode .text-size-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #E0E0E0;
}

html.theme-dark .text-size-btn:hover,
body.dark-mode .text-size-btn:hover {
    background: var(--nv-accent);
    border-color: var(--nv-accent);
    color: #000000;
}

html.theme-dark .text-size-value,
body.dark-mode .text-size-value {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #E0E0E0;
}

html.theme-dark .toggle-track,
body.dark-mode .toggle-track {
    background: rgba(255, 255, 255, 0.14);
}

html.theme-dark .toggle-track::after,
body.dark-mode .toggle-track::after {
    background: #2a2a2a;
}

html.theme-dark kbd,
body.dark-mode kbd {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #E0E0E0;
    box-shadow: none;
}

html.theme-dark .access-saved-notice,
body.dark-mode .access-saved-notice {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

html.theme-dark .lang-fab-dropdown,
body.dark-mode .lang-fab-dropdown {
    background: #1a1a20;
    border-color: rgba(255, 255, 255, 0.1);
}


/* ============================ HIGH CONTRAST ==============================
   The site-wide --nv-* overrides live in navigation.css (loaded on every
   page); only the /accessibility-page-local --ac-* tokens are rebound
   here so the page's own controls (toggles, cards) follow suit. */
html.high-contrast {
    --ac-fg:             #000000;
    --ac-muted-fg:       #1A1A1A;
    --ac-border:         #000000;
    --ac-muted:          #F2F2F2;
    --ac-surface:        #FFFFFF;
}

html.high-contrast.theme-dark,
body.dark-mode.high-contrast {
    --ac-fg:             #FFFFFF;
    --ac-muted-fg:       #EFEFEF;
    --ac-border:         #FFFFFF;
    --ac-surface:        #000000;
    --ac-muted:          #0A0A0A;
}


/* ============================ REDUCED MOTION ============================= */

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .lang-fab,
    .lang-fab-dropdown,
    .lang-fab-option,
    .toggle-track,
    .toggle-track::after,
    .text-size-btn,
    .access-option {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

body.reduce-motion .reveal,
body.reduce-motion .lang-fab,
body.reduce-motion .lang-fab-dropdown,
body.reduce-motion .lang-fab-option,
body.reduce-motion .toggle-track,
body.reduce-motion .toggle-track::after,
body.reduce-motion .text-size-btn,
body.reduce-motion .access-option {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
}

/* Site-wide reduce-motion lives in navigation.css so it applies on
   every page; this file only kept the original /accessibility-page
   local rules above. */


/* ════════════════════════════════════════════════════════════════════
   Language picker — custom dropdown
   ──────────────────────────────────────────────────────────────────────
   Pill-shaped trigger with a translate icon, a current-value label,
   and a caret that rotates when open. Menu pops below the trigger as
   a floating card with rounded corners, drop shadow, and an
   `is-selected` row marked by a gold check. Theme tokens (--nv-*)
   are inherited from navigation.css, so the dropdown picks up the
   user's dark/light mode automatically.
   ════════════════════════════════════════════════════════════════════ */
.access-lang-dd {
    position: relative;
    display: inline-flex;
    min-width: 0;
}

.access-lang-dd__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 0 10px 0 12px;
    height: 42px;
    background: var(--nv-bg, transparent);
    border: 1px solid var(--nv-border);
    border-radius: 999px;
    color: var(--nv-fg);
    font: 600 14px/1 'Source Sans 3', system-ui, sans-serif;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease,
                background 160ms ease, box-shadow 160ms ease;
}
.access-lang-dd__trigger:hover {
    border-color: var(--nv-accent);
    color: var(--nv-accent);
}
.access-lang-dd__trigger:focus-visible {
    outline: 0;
    border-color: var(--nv-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--nv-accent) 22%, transparent);
}
.access-lang-dd.is-open .access-lang-dd__trigger {
    border-color: var(--nv-accent);
}

.access-lang-dd__flag {
    font-size: 18px;
    color: var(--nv-accent);
    font-variation-settings: 'FILL' 1, 'wght' 500;
}

.access-lang-dd__value {
    flex: 0 0 auto;
    min-width: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.access-lang-dd__caret {
    font-size: 20px;
    color: var(--nv-muted-fg);
    transition: transform 200ms ease, color 160ms ease;
}
.access-lang-dd.is-open .access-lang-dd__caret {
    transform: rotate(180deg);
    color: var(--nv-accent);
}

.access-lang-dd__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 90px;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: var(--nv-bg);
    border: 1px solid var(--nv-border);
    border-radius: 10px;
    box-shadow:
        0 14px 32px -8px color-mix(in srgb, var(--nv-fg) 25%, transparent),
        0 4px 10px -2px color-mix(in srgb, var(--nv-fg) 12%, transparent);
    z-index: 10;
    animation: access-lang-dd-in 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.access-lang-dd__menu[hidden] { display: none; }

@keyframes access-lang-dd-in {
    from { opacity: 0; transform: translateY(-4px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0)    scale(1);     }
}

.access-lang-dd__opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    color: var(--nv-fg);
    font: 500 14px/1.3 'Source Sans 3', system-ui, sans-serif;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
}
.access-lang-dd__opt:hover,
.access-lang-dd__opt:focus-visible {
    background: color-mix(in srgb, var(--nv-fg) 6%, transparent);
    outline: 0;
}
.access-lang-dd__opt.is-selected {
    background: color-mix(in srgb, var(--nv-accent) 14%, transparent);
    color: var(--nv-fg);
    font-weight: 600;
}
.access-lang-dd__opt.is-selected:hover {
    background: color-mix(in srgb, var(--nv-accent) 22%, transparent);
}

.access-lang-dd__opt-check {
    flex-shrink: 0;
    font-size: 17px;
    color: var(--nv-accent);
    font-variation-settings: 'FILL' 1, 'wght' 600;
    opacity: 0;
}
.access-lang-dd__opt.is-selected .access-lang-dd__opt-check { opacity: 1; }

/* Narrow phones: the picker stays on the right (matches the row
   alignment of every other option's toggle/text-size widget) and
   the trigger is compact since it only shows a 2-letter code. The
   menu opens flush-right under the trigger, hugging its width. */
@media (max-width: 540px) {
    .access-lang-dd { flex-shrink: 0; }
    .access-lang-dd__trigger { padding: 0 8px 0 10px; gap: 6px; }
    .access-lang-dd__menu { min-width: 80px; }
}

@media (prefers-reduced-motion: reduce) {
    .access-lang-dd__trigger,
    .access-lang-dd__caret,
    .access-lang-dd__opt { transition: none; }
    .access-lang-dd__menu { animation: none; }
}
body.reduce-motion .access-lang-dd__trigger,
body.reduce-motion .access-lang-dd__caret,
body.reduce-motion .access-lang-dd__opt { transition: none; }
body.reduce-motion .access-lang-dd__menu { animation: none; }
