*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: #F6F1E7; color: #2A2018; font-family: 'Mulish', system-ui, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
::selection { background: #B0823A; color: #fff; }
a { text-decoration: none; color: inherit; }

/* Focus visible — teclado/accesibilidad, sin anillo al hacer clic */
:focus-visible {
  outline: 2px solid #B0823A;
  outline-offset: 3px;
  border-radius: 4px;
}
/* Elimina el outline por defecto solo cuando :focus-visible está soportado */
:focus:not(:focus-visible) { outline: none; }
