/* Shared accessibility and mobile contact control. */
* { box-sizing: border-box; }
img { max-width: 100%; }
a:focus-visible, button:focus-visible { outline: 3px solid #a92d1b; outline-offset: 5px; }
.skip-link { position: fixed; top: -100px; left: 12px; z-index: 100; background: #fff7ea; padding: 12px; }
.skip-link:focus { top: 12px; }
.mobile-cta { display: none; }
@media(max-width: 640px) {
 body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
 .mobile-cta { display: block; position: fixed; bottom: max(12px, env(safe-area-inset-bottom)); left: 16px; right: 16px; z-index: 30; padding: 14px; border-radius: 6px; background: #922613; color: #fff7ea; text-align: center; font-weight: 700; text-decoration: none; box-shadow: 0 2px 12px #0005; }
 .mobile-cta:hover { color: white; background: #6e1c0e; }
}
@media(prefers-reduced-motion: reduce) { html { scroll-behavior: auto !important; } }
